netstat命令 – 显示网络状态-kb88凯时官网登录

来自:网络
时间:2020-09-24
阅读:
免费资源网 - https://freexyz.cn/

netstat 命令用于显示各种网络相关信息,如网络连接,路由表,接口状态 (interface statistics),masquerade 连接,多播成员 (multicast memberships) 等等。

从整体上看,netstat的输出结果可以分为两个部分:一个是active internet connections,称为有源tcp连接,其中”recv-q”和”send-q”指 的是接收队列和发送队列。这些数字一般都应该是0。如果不是则表示软件包正在队列中堆积。这种情况只能在非常少的情况见到;另一个是active unix domain sockets,称为有源unix域套接口(和网络套接字一样,但是只能用于本机通信,性能可以提高一倍)。

语法格式:netstat [参数]

常用参数:

-a显示所有连线中的socket
-p显示正在使用socket的程序识别码和程序名称
-u显示udp传输协议的连线状况
-i显示网络界面信息表单
-n直接使用ip地址,不通过域名服务器

参考实例

显示详细的网络状况:

[root@linuxcool ~]# netstat -a

显示当前户籍udp连接状况:

[root@linuxcool ~]# netstat -nu

显示udp端口号的使用情况:

[root@linuxcool ~]# netstat -apu active internet connections (servers and established)proto recv-q send-q local address  foreign address  state  pid/program name    udp        0      0 0.0.0.0:bootpc          0.0.0.0:*      4000/dhclient       udp        0      0 localhost:323           0.0.0.0:*      3725/chronyd        udp6       0      0 localhost:323           [::]:*         3725/chronyd 

显示网卡列表:

[root@linuxcool ~]# netstat -i kernel interface table iface mtu met  rx-ok  rx-err  rx-drp rx-ovr  tx-ok tx-err tx-drp tx-ovr flg eth0 1500   0  181864   0      0       0     141278   0     0     0    bmru lo   16436  0   3362    0      0       0     3362     0     0     0    lru

显示组播组的关系:

[root@linuxcool ~]# netstat -g ipv6/ipv4 group memberships interface    refcnt group --------------- ------ --------------------- lo        1   all-systems.mcast.net eth0      1   all-systems.mcast.net lo       1   ff02::1 eth0      1   ff02::1:ff0a:b0c eth0          1   ff02::1
免费资源网 - https://freexyz.cn/
返回顶部
顶部
网站地图