Para TCP Buffer, puede usar
netstat -nt
y busque la segunda y tercera columna para el búfer de recepción y envío (Recv-Q,Send-Q)
Para UDP
netstat -nua
De la misma manera que puede mirar dentro de /proc/net/{tcp,udp} y buscar tx_queue &rx_queue
De la misma manera que puede usar
ethtool -S <nic card name> (driver need to support)
NIC statistics:
rx_packets: 445
tx_packets: 48
rx_bytes: 56015
tx_bytes: 5938
rx_broadcast: 336
tx_broadcast: 2
rx_multicast: 89
tx_multicast: 28
rx_errors: 0
tx_errors: 0
tx_dropped: 0
También solo quiero agregar que hay un parámetro de red "tcp_moderate_rcvbuf" que está habilitado de forma predeterminada, realiza el ajuste automático del búfer de recepción. Según kernel-doc
If set, TCP performs receive buffer auto-tuning, attempting to
automatically size the buffer (no greater than tcp_rmem[2]) to
match the size required by the path for full throughput