netstat

41次阅读

共计 3378 个字符,预计需要花费 9 分钟才能阅读完成。

netstat 命令是一个监控 TCP/IP 网络的非常有用的工具,它可以显示路由表、实际的网络连接以及每一个网络接口设备的状态信息。

语法选项

netstat [选项]
- a 或 --all:显示所有连线中的 Socket;-A< 网络类型 > 或 --< 网络类型 >:列出该网络类型连线中的相关地址;- c 或 --continuous:持续列出网络状态;- C 或 --cache:显示路由器配置的快取信息;- e 或 --extend:显示网络其他相关信息;- F 或 --fib:显示 FIB;- g 或 --groups:显示多重广播功能群组组员名单;- h 或 --help:在线帮助;- i 或 --interfaces:显示网络界面信息表单;- l 或 --listening:显示监控中的服务器的 Socket;- M 或 --masquerade:显示伪装的网络连线;- n 或 --numeric:直接使用 ip 地址,而不通过域名服务器;- N 或 --netlink 或 --symbolic:显示网络硬件外围设备的符号连接名称;- o 或 --timers:显示计时器;- p 或 --programs:显示正在使用 Socket 的程序识别码和程序名称;- r 或 --route:显示 Routing Table;- s 或 --statistice:显示网络工作信息统计表;- t 或 --tcp:显示 TCP 传输协议的连线状况;- u 或 --udp:显示 UDP 传输协议的连线状况;- v 或 --verbose:显示指令执行过程;- V 或 --version:显示版本信息;- w 或 --raw:显示 RAW 传输协议的连线状况;- x 或 --unix:此参数的效果和指定 "-A unix" 参数相同;--ip 或 --inet:此参数的效果和指定 "-A inet" 参数相同。

例子
列出所有端口情况

[root@xiesshavip002 ~]# netstat -a      # 列出所有端口
[root@xiesshavip002 ~]# netstat -at     # 列出所有 TCP 端口
[root@xiesshavip002 ~]# netstat -au     # 列出所有 UDP 端口

列出所有处于监听状态的 Sockets

[root@xiesshavip002 ~]# netstat -l   # 只显示监听端口
[root@xiesshavip002 ~]# netstat -lt  # 显示监听 TCP 端口
[root@xiesshavip002 ~]# netstat -lu  # 显示监听 UDP 端口
[root@xiesshavip002 ~]# netstat -lx  # 显示监听 UNIX 端口

显示每个协议的统计信息

[root@xiesshavip002 ~]# netstat -s     # 显示所有端口的统计信息
[root@xiesshavip002 ~]# netstat -st    # 显示所有 TCP 的统计信息
[root@xiesshavip002 ~]# netstat -su    # 显示所有 UDP 的统计信息

显示 PID 和进程名称

[root@xiesshavip002 ~]# netstat -p

显示核心路由信息

[root@xiesshavip002 ~]# netstat -r

Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
default         gateway         0.0.0.0         UG        0 0          0 eth0
192.168.130.0   0.0.0.0         255.255.255.0   U         0 0          0 eth0
[root@xiesshavip002 ~]# netstat -rn   # 显示数字格式,不查询主机名称
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
0.0.0.0         192.168.130.1   0.0.0.0         UG        0 0          0 eth0
192.168.130.0   0.0.0.0         255.255.255.0   U         0 0          0 eth0
[root@xiesshavip002 ~]#

查看端口和服务

[root@xiesshavip002 ~]# netstat -antp | grep ssh
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      734/sshd            
tcp        0     52 192.168.130.20:22       119.129.118.189:58737   ESTABLISHED 1846/sshd: root@pts 
tcp6       0      0 :::22                   :::*                    LISTEN      734/sshd            
[root@xiesshavip002 ~]# netstat -antp | grep 22
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      734/sshd            
tcp        0     52 192.168.130.20:22       119.129.118.189:58737   ESTABLISHED 1846/sshd: root@pts 
tcp6       0      0 :::22                   :::*                    LISTEN      734/sshd            
[root@xiesshavip002 ~]#
netstat --help
[root@xiesshavip002 ~]# netstat --help
usage: netstat [-vWeenNcCF] [<Af>] -r         netstat {-V|--version|-h|--help}
       netstat [-vWnNcaeol] [<Socket> ...]
       netstat {[-vWeenNac] -I[<Iface>] | [-veenNac] -i | [-cnNe] -M | -s [-6tuw] } [delay]

        -r, --route              display routing table
        -I, --interfaces=<Iface> display interface table for <Iface>
        -i, --interfaces         display interface table
        -g, --groups             display multicast group memberships
        -s, --statistics         display networking statistics (like SNMP)
        -M, --masquerade         display masqueraded connections

        -v, --verbose            be verbose
        -W, --wide               don't truncate IP addresses
        -n, --numeric            don't resolve names
        --numeric-hosts          don't resolve host names
        --numeric-ports          don't resolve port names
        --numeric-users          don't resolve user names
        -N, --symbolic           resolve hardware names
        -e, --extend             display other/more information
        -p, --programs           display PID/Program name for sockets
        -o, --timers             display timers
        -c, --continuous         continuous listing

        -l, --listening          display listening server sockets
        -a, --all                display all sockets (default: connected)
        -F, --fib                display Forwarding Information Base (default)
        -C, --cache              display routing cache instead of FIB
        -Z, --context            display SELinux security context for sockets

  <Socket>={-t|--tcp} {-u|--udp} {-U|--udplite} {-w|--raw} {-x|--unix}
           --ax25 --ipx --netrom
  <AF>=Use '-6|-4' or '-A <af>' or '--<af>'; default: inet
  List of possible address families (which support routing):
    inet (DARPA Internet) inet6 (IPv6) ax25 (AMPR AX.25) 
    netrom (AMPR NET/ROM) ipx (Novell IPX) ddp (Appletalk DDP) 
    x25 (CCITT X.25) 
[root@xiesshavip002 ~]#

正文完
 0