下面的命令
[root@machine1 output]# netstat -s --udp
IcmpMsg:
InType0: 371137
InType3: 296
InType8: 386843
InType11: 4
InType13: 141
InType15: 1
InType17: 49
InType37: 16
OutType0: 386783
OutType3: 32599
OutType8: 362140
OutType14: 81
OutType69: 9453
Udp:
817280 packets received
35616 packets to unknown port received.
0 packet receive errors
719370 packets sent
0 receive buffer errors
0 send buffer errors
UdpLite:
IpExt:
InBcastPkts: 164884
InOctets: 183199850306
OutOctets: 262639339161
InBcastOctets: 86010324
InNoECTPkts: 180536251
InECT0Pkts: 7283
[root@machine1 output]#
给出817280
每秒在所有 UDP 端口接收到的数据包( )。
但是,我想知道仅在特定 UDP 端口 514 收到的数据包
环境:RHEL 7.x
[root@machine1 output]# netstat -an | grep 514
udp 0 0 0.0.0.0:514 0.0.0.0:*
有哪些选项可用于netstat
了解 UDP 端口 514 收到的数据包?每单位时间...