在运行netstat -su
的Linux服务器中,我可以得到udp数据包的统计信息,如下所示:
netstat -su
IcmpMsg:
InType0: 10827
InType3: 42792
InType8: 298795
InType13: 2
OutType0: 298795
OutType3: 328120
OutType8: 10827
OutType14: 2
Udp:
232862733 packets received
12074334 packets to unknown port received.
555474 packet receive errors
8650718 packets sent
UdpLite: IpExt:
InBcastPkts: 375
InOctets: 169855997552
OutOctets: 60497003017
InBcastOctets: 144080
netstat命令从哪里获取这些统计信息?我可以清除缓冲区以使它们从零开始吗?
答案 0 :(得分:7)
您可以在不离开终端的情况下找到这些事情的答案。
让我们自己看看:
# strace netstat -su &> netstat_strace
这将是一个'开放'和'读',因为它从某个地方获取数据(但是grep在它无法读取/打开的地方):
# grep -E 'open|read' netstat_strace | grep -v ENOENT
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\37\2\0\0\0\0\0"..., 832) = 832
open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 3
read(3, "MemTotal: 3854816 kB\nMemF"..., 1024) = 1024
open("/proc/net/snmp", O_RDONLY) = 3
read(3, "Ip: Forwarding DefaultTTL InRece"..., 4096) = 1261
open("/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 4
read(4, "# Locale name alias data base.\n#"..., 4096) = 2570
read(4, "", 4096) = 0
read(3, "", 4096) = 0
open("/proc/net/netstat", O_RDONLY) = 3
read(3, "TcpExt: SyncookiesSent Syncookie"..., 4096) = 2158
read(3, "", 4096) = 0
从检查strace
输出,我们可以看到它正在写一个字符串:
write(1, "IcmpMsg:\n InType0: 11\n InT"..., 373IcmpMsg:
InType0: 11
好吧,这很有趣。我们来看看netstat
:的手册页
man netstat
如果你看看FILES
:
FILES
/etc/services -- The services translation file
/proc -- Mount point for the proc filesystem, which gives access to kernel status information via the following files.
/proc/net/dev -- device information
/proc/net/raw -- raw socket information
/proc/net/tcp -- TCP socket information
/proc/net/udp -- UDP socket information
/proc/net/igmp -- IGMP multicast information
...
您可以从上面看到open
ed和read
的原因。在搜索“清除”或“重置”(或读取它)时,您会发现这些不是命令的选项。
下一步是检查man proc
,它将自己描述为“进程信息伪文件系统”。
从这里,您可以了解如果您修改了netstat读取的文件,您可以更改netstat的输出(/proc/net/netstat
在我看来看起来特别有趣) - 你可以 - 但是我建议让它只读。
答案 1 :(得分:1)
计数器的设计通常不会被重置,如果它们被重置,它就会失去作为计数器的目的。计数器的要点是数据的消费者可以轮询它们并计算费率,或者计算一段时间以来的增量,但轮询的频率无关紧要。可能有许多不同的数据消费者,如果计数器出现故障(说零),消费者可以丢弃数据期间或假设他们已经过期(可能导致错误报告)。
您可以使用自己的消费者对它们进行重新定义(例如,运行获取统计数据的脚本,查看其当前值,并提供后续读数,并扣除这些初始值)。