访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux netstat命令大全详解(3)

时间:2019-10-15

linux命令分类大全_linux简单命令大全_linux命令大全

5. 在 netstat 输出中不显示主机,端口和用户名 (host, port or user)

当你不想让主机,端口和用户名显示linux命令大全,使用 netstat -n。将会使用数字代替那些名称。

同样可以加速输出,因为不用进行比对查询。

# netstat -an

如果只是不想让这三个名称中的一个被显示,使用以下命令

#%20netsat%20-a%20--numeric-ports #%20netsat%20-a%20--numeric-hosts #%20netsat%20-a%20--numeric-users

6.%20持续输出%20netstat%20信息

netstat%20将每隔一秒输出网络信息。

#%20netstat%20-c %20Active%20Internet%20connections%20(w/o%20servers) %20Proto%20Recv-Q%20Send-Q%20Local%20Address%20%20%20%20%20%20Foreign%20Address%20%20%20%20%20State %20tcp%20%20%20%200%20%20%200%20ramesh-laptop.loc:36130%20101-101-181-225.ama:www%20ESTABLISHED %20tcp%20%20%20%201%20%20%201%20ramesh-laptop.loc:52564%20101.11.169.230:www%20%20%20CLOSING %20tcp%20%20%20%200%20%20%200%20ramesh-laptop.loc:43758%20server-101-101-43-2:www%20ESTABLISHED %20tcp%20%20%20%201%20%20%201%20ramesh-laptop.loc:42367%20101.101.34.101:www%20%20%20CLOSING %20^C

7.%20显示系统不支持的地址族%20(Address%20Families)

netstat --verbose

在输出的末尾linux命令大全,会有如下的信息

netstat: no support for `AF IPX' on this system.
netstat: no support for `AF AX25' on this system.
netstat: no support for `AF X25' on this system.
netstat: no support for `AF NETROM' on this system.

8. 显示核心路由信息 netstat -r

# netstat -r
 Kernel IP routing table
 Destination   Gateway     Genmask     Flags  MSS Window irtt Iface
 192.168.1.0   *        255.255.255.0  U     0 0     0 eth2
 link-local   *        255.255.0.0   U     0 0     0 eth2
 default     192.168.1.1   0.0.0.0     UG    0 0     0 eth2

linux命令分类大全_linux简单命令大全_linux命令大全

注意: 使用 netstat -rn 显示数字格式,不查询主机名称。

9. 找出程序运行的端口

并不是所有的进程都能找到,没有权限的会不显示,使用 root 权限查看所有的信息。

# netstat -ap | grep ssh
 tcp    1   0 dev-db:ssh      101.174.100.22:39213    CLOSE_WAIT -
 tcp    1   0 dev-db:ssh      101.174.100.22:57643    CLOSE_WAIT -
 上一个教程:Linux命令行查看内存