5. 在 netstat 輸出中不顯示主機,端口和用戶名 (host, port or user)
當(dāng)你不想讓主機,端口和用戶名顯示linux命令大全,使用 netstat -n。將會使用數(shù)字代替那些名稱。
同樣可以加速輸出,因為不用進行比對查詢。
# netstat -an
如果只是不想讓這三個名稱中的一個被顯示,使用以下命令
#%20netsat%20-a%20--numeric-ports #%20netsat%20-a%20--numeric-hosts #%20netsat%20-a%20--numeric-users
6.%20持續(xù)輸出%20netstat%20信息
netstat%20將每隔一秒輸出網(wǎng)絡(luò)信息。
#%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顯示系統(tǒng)不支持的地址族%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
注意: 使用 netstat -rn 顯示數(shù)字格式,不查詢主機名稱。
9. 找出程序運行的端口
并不是所有的進程都能找到,沒有權(quán)限的會不顯示,使用 root 權(quán)限查看所有的信息。
# 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命令行查看內(nèi)存
下一個教程:查看linux系統(tǒng)的常用命令