diff --git a/go/neo/t/neotest b/go/neo/t/neotest
index 906e6d8024e7f2484fbf674e9eb1904870bdd67d..3efc8243e369a8a2647b0191be6c63c64fe27987 100755
--- a/go/neo/t/neotest
+++ b/go/neo/t/neotest
@@ -612,6 +612,17 @@ system_info() {
 			test "$rxlat" -le 10 || nicwarnv+=("RX coalesce latency is max ${rxlat}μs - that will add to networked request-reply latency")
 		fi
 
+		# show main parameters + GRO flush time
+		s="# $nicname:"
+		s+=" `cat $nic/operstate`"
+		speed=`cat $nic/speed 2>/dev/null` || speed=?	# returns EINVAL for wifi
+		s+=", speed=$speed"
+		s+=", mtu=`cat $nic/mtu`"
+		s+=", txqlen=`cat $nic/tx_queue_len`"
+		tgroflush_ns=`cat $nic/gro_flush_timeout`
+		s+=", gro_flush_timeout=`python -c "print '%.3f' % ($tgroflush_ns / 1E3)"`µs"
+		echo "$s"
+
 
 		# emit NIC warnings
 		for warn in "${nicwarnv[@]}"; do