linux 使用 netstat -ano 出现的倒数第二列off on 是什么意思,on后面括号的数字表示什么?
netstat 命令用于显示各种网络相关信息,如网络连接,路由表,接口状态 (Interface Statistics),masquerade 连接,多播成员 (Multicast Memberships) 。
参数含义:
-a, --all 显示监听或非监听状态的接口
Show both listening and non-listening (for TCP this means established connections) sockets.
-o, --timers 包括相关信息网络定时器。
Include information related to networking timers.
-n 拒绝显示别名,能显示数字的全部转化成数字。
Show numerical addresses instead of trying to determine symbolic host, port or user names.
下图中status是LISTEN 状态,Timer定时器off表示已关闭,on则表示打开;
status是ESTABLISHED 状态表示建立连接,这时本地IP和远程IP和端口都显示出来,
on后面的数字是连接的时长;
参考下面的图示: