中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認證|工資待遇與招聘,認準(zhǔn)超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點關(guān)注 > linux常用命令

Linux netstat命令大全詳解(3)

時間:2019-10-15

linux命令分類大全_linux簡單命令大全_linux命令大全

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

linux命令分類大全_linux簡單命令大全_linux命令大全

注意: 使用 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 -