91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Netstat命令介紹

發布時間:2020-06-19 02:46:25 來源:網絡 閱讀:1344 作者:jiaohuanji88 欄目:系統運維

                             Netstat命令介紹


Netstat 命令用于顯示各種網絡相關信息,如網絡連接,路由表,接口狀態 (Interface Statistics),masquerade 連接,

多播成員 (Multicast Memberships) 等等。


輸出信息含義


執行netstat后,其輸出結果為

[root@clientA ~]# netstat
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 192.168.20.5:ssh            192.168.20.6:56605          ESTABLISHED
Active UNIX domain sockets (w/o servers)
Proto RefCnt Flags       Type       State         I-Node Path
unix  2      [ ]         DGRAM                    8447   @/org/kernel/udev/udevd
unix  13     [ ]         DGRAM                    10614  /dev/log
unix  2      [ ]         DGRAM                    136984
unix  2      [ ]         DGRAM                    136953
unix  2      [ ]         DGRAM                    136889
unix  2      [ ]         DGRAM                    99938
unix  2      [ ]         DGRAM                    55471
unix  2      [ ]         DGRAM                    11897
unix  2      [ ]         DGRAM                    11882
unix  3      [ ]         STREAM     CONNECTED     11861
unix  3      [ ]         STREAM     CONNECTED     11860
unix  3      [ ]         STREAM     CONNECTED     11857
unix  3      [ ]         STREAM     CONNECTED     11856
[root@clientA ~]#

從整體上看,netstat的輸出結果可以分為兩個部分:


一個是Active Internet connections,稱為有源TCP連接,其中"Recv-Q"和"Send-Q"指%0A的是接收隊列和發送隊列。這些數字一般都應該是0。

如果不是則表示軟件包正在隊列中堆積。這種情況只能在非常少的情況見到。另一個是Active UNIX domain sockets,稱為有源Unix域套接口

(和網絡套接字一樣,但是只能用于本機通信,性能可以提高一倍)。Proto顯示連接使用的協議,RefCnt表示連接到本套接口上的進程號,

Types顯示套接口的類型,State顯示套接口當前的狀態,Path表示連接到套接口的其它進程使用的路徑名。


常見參數


-a (all)顯示所有選項,默認不顯示LISTEN相關


-t (tcp)僅顯示tcp相關選項


-u (udp)僅顯示udp相關選項


-n 拒絕顯示別名,能顯示數字的全部轉化成數字。


-l 僅列出有在 Listen (監聽) 的服務狀態


-p 顯示建立相關鏈接的程序名


-r 顯示路由信息,路由表


-e 顯示擴展信息,例如uid等


-s 按各個協議進行統計


-c 每隔一個固定時間,執行該netstat命令。


提示:LISTEN和LISTENING的狀態只有用-a或者-l才能看到


實用命令實例


1. 列出所有端口 (包括監聽和未監聽的)


【列出所有端口 netstat -a】

[root@clientA ~]#  netstat -a | more
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 192.168.20.5:rsync          *:*                         LISTEN
tcp        0      0 *:sunrpc                    *:*                         LISTEN
tcp        0      0 *:ssh                       *:*                         LISTEN
tcp        0      0 localhost.localdomain:smtp  *:*                         LISTEN
tcp        0      0 *:52923                     *:*                         LISTEN
tcp        0      0 *:57214                     *:*                         LISTEN
tcp        0      0 *:51327                     *:*                         LISTEN
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node Path
unix  2      [ ACC ]     STREAM     LISTENING     11775  public/cleanup
unix  2      [ ACC ]     STREAM     LISTENING     11782  private/tlsmgr
unix  2      [ ACC ]     STREAM     LISTENING     11786  private/rewrite
unix  2      [ ACC ]     STREAM     LISTENING     11790  private/bounce
unix  2      [ ACC ]     STREAM     LISTENING     11794  private/defer

【列出所有 tcp 端口 netstat -at】

[root@clientA ~]# netstat -at
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 192.168.20.5:rsync          *:*                         LISTEN
tcp        0      0 *:sunrpc                    *:*                         LISTEN
tcp        0      0 *:ssh                       *:*                         LISTEN
tcp        0      0 localhost.localdomain:smtp  *:*                         LISTEN
tcp        0      0 *:52923                     *:*                         LISTEN
tcp        0      0 *:57214                     *:*                         LISTEN
tcp        0      0 *:51327                     *:*                         LISTEN
tcp        0      0 *:nfs                       *:*                         LISTEN

【列出所有 udp 端口 netstat -au 】

[root@clientA ~]# netstat -au
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
udp        0      0 *:sunrpc                    *:*
udp        0      0 *:nfs                       *:*
udp        0      0 *:smpnameres                *:*
udp        0      0 *:58775                     *:*
udp        0      0 localhost.localdomain:920   *:*
udp        0      0 *:37294                     *:*
udp        0      0 *:58800                     *:*

2. 列出所有處于監聽狀態的 Sockets


【只顯示監聽端口 netstat -l 】

[root@clientA ~]# netstat -l
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 192.168.20.5:rsync          *:*                         LISTEN
tcp        0      0 *:sunrpc                    *:*                         LISTEN
tcp        0      0 *:ssh                       *:*                         LISTEN
tcp        0      0 localhost.localdomain:smtp  *:*                         LISTEN
tcp        0      0 *:52923                     *:*                         LISTEN
tcp        0      0 *:57214                     *:*                         LISTEN
tcp        0      0 *:51327                     *:*                         LISTEN
Active UNIX domain sockets (only servers)
Proto RefCnt Flags       Type       State         I-Node Path
unix  2      [ ACC ]     STREAM     LISTENING     11775  public/cleanup
unix  2      [ ACC ]     STREAM     LISTENING     11782  private/tlsmgr
unix  2      [ ACC ]     STREAM     LISTENING     11786  private/rewrite
unix  2      [ ACC ]     STREAM     LISTENING     11790  private/bounce
unix  2      [ ACC ]     STREAM     LISTENING     11794  private/defer
unix  2      [ ACC ]     STREAM     LISTENING     11798  private/trace
unix  2      [ ACC ]     STREAM     LISTENING     11802  private/verify
unix  2      [ ACC ]     STREAM     LISTENING     11806  public/flush
unix  2      [ ACC ]     STREAM     LISTENING     11810  private/proxymap


【只列出所有監聽 tcp 端口 netstat -lt 】

[root@clientA ~]# netstat -lt
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 192.168.20.5:rsync          *:*                         LISTEN
tcp        0      0 *:sunrpc                    *:*                         LISTEN
tcp        0      0 *:ssh                       *:*                         LISTEN
tcp        0      0 localhost.localdomain:smtp  *:*                         LISTEN
tcp        0      0 *:52923                     *:*                         LISTEN
tcp        0      0 *:57214                     *:*                         LISTEN
tcp        0      0 *:51327                     *:*                         LISTEN
tcp        0      0 *:nfs                       *:*                         LISTEN

【只列出所有監聽 udp 端口 netstat -lu 】

[root@clientA ~]# netstat -lu
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
udp        0      0 *:sunrpc                    *:*
udp        0      0 *:nfs                       *:*
udp        0      0 *:smpnameres                *:*
udp        0      0 *:58775                     *:*
udp        0      0 localhost.localdomain:920   *:*
udp        0      0 *:37294                     *:*
udp        0      0 *:58800                     *:*
udp        0      0 *:39099                     *:*
udp        0      0 *:bootpc                    *:*

【只列出所有監聽 UNIX 端口 netstat -lx】

[root@clientA ~]# netstat -lx
Active UNIX domain sockets (only servers)
Proto RefCnt Flags       Type       State         I-Node Path
unix  2      [ ACC ]     STREAM     LISTENING     11775  public/cleanup
unix  2      [ ACC ]     STREAM     LISTENING     11782  private/tlsmgr
unix  2      [ ACC ]     STREAM     LISTENING     11786  private/rewrite
unix  2      [ ACC ]     STREAM     LISTENING     11790  private/bounce
unix  2      [ ACC ]     STREAM     LISTENING     11794  private/defer
unix  2      [ ACC ]     STREAM     LISTENING     11798  private/trace
unix  2      [ ACC ]     STREAM     LISTENING     11802  private/verify

3. 顯示每個協議的統計信息


【顯示所有端口的統計信息 netstat -s 】

[root@clientA ~]# netstat -s
Ip:
    25997 total packets received
    1 with invalid addresses
    0 forwarded
    0 incoming packets discarded
    23969 incoming packets delivered
    20845 requests sent out
Icmp:
    1539 ICMP messages received
    0 input ICMP message failed.
    ICMP input histogram:
        destination unreachable: 1539
    1539 ICMP messages sent
    0 ICMP messages failed
    ICMP output histogram:
        destination unreachable: 1539

【顯示 TCP 或 UDP 端口的統計信息 netstat -st 或 -su 】

4. 在 netstat 輸出中顯示 PID 和進程名稱 netstat -p

netstat -p 可以與其它開關一起使用,就可以添加 “PID/進程名稱” 到 netstat 輸出中,

這樣 debugging 的時候可以很方便的發現特定端口運行的程序

[root@clientA ~]# netstat -pt
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name
tcp        0      0 192.168.20.5:ssh            192.168.20.6:56605          ESTABLISHED 10120/0

5. 在 netstat 輸出中不顯示主機,端口和用戶名 (host, port or user)


當你不想讓主機,端口和用戶名顯示,使用 netstat -n。將會使用數字代替那些名稱。


同樣可以加速輸出,因為不用進行比對查詢。


# netstat -an



6. 持續輸出 netstat 信息


netstat 將每隔一秒輸出網絡信息。


# netstat -c


7. 顯示系統不支持的地址族 (Address Families)


netstat --verbose


在輸出的末尾,會有如下的信息

[root@clientA ~]netstat --verbose

【 顯示核心路由信息 netstat -r】

[root@clientA ~]# netstat -r
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.20.0    *               255.255.255.0   U         0 0          0 eth0
link-local      *               255.255.0.0     U         0 0          0 eth0
default         192.168.20.1    0.0.0.0         UG        0 0          0 eth0

注意: 使用 netstat -rn 顯示數字格式,不查詢主機名稱

【9. 找出程序運行的端口】

并不是所有的進程都能找到,沒有權限的會不顯示,使用 root 權限查看所有的信息

[root@clientA ~]# netstat -ap | grep ssh
tcp        0      0 *:ssh                       *:*                         LISTEN      1284/sshd          
tcp        0     64 192.168.20.5:ssh            192.168.20.6:56605          ESTABLISHED 10120/0            
tcp        0      0 *:ssh                       *:*                         LISTEN      1284/sshd


找出運行在指定端口的進程

# netstat -an | grep ':80'
[root@clientA ~]# netstat -an | grep "80"
udp        0      0 0.0.0.0:58800               0.0.0.0:*
unix  2      [ ACC ]     STREAM     LISTENING     11802  private/verify
unix  2      [ ACC ]     STREAM     LISTENING     11806  public/flush
unix  3      [ ]         STREAM     CONNECTED     11809

10. 顯示網絡接口列表

# 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 0000 00000 BMU
eth3 1500 02619600 026883600 BMRU
lo 16436 0400 04000 LRU


顯示詳細信息,像是 ifconfig 使用 netstat -ie:


# netstat -ie


【IP和TCP分析】

查看連接某服務端口最多的的IP地址:

[root@clientA ~]# netstat -nat | grep "192.168.20.5" |awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -nr|head -20
      1 192.168.20.6
      1 0.0.0.0

TCP各種狀態列表

[root@clientA ~]# netstat -nat |awk '{print $6}'
established)
Foreign
LISTEN
LISTEN
LISTEN
LISTEN

先把狀態全都取出來,然后使用uniq -c統計,之后再進行排序。

[root@clientA ~]# netstat -nat |awk '{print $6}'|sort|uniq -c
      1 established)
      1 ESTABLISHED
      1 Foreign
     18 LISTEN

最后的命令如下:

netstat -nat |awk '{print $6}'|sort|uniq -c|sort -rn
[root@clientA ~]# netstat -nat |awk '{print $6}'|sort|uniq -c|sort -rn
     18 LISTEN
      1 Foreign
      1 ESTABLISHED
      1 established

分析access.log獲得訪問前10位的ip地址


awk '{print $1}' access.log |sort|uniq -c|sort -nr|head -10



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

张家界市| 会泽县| 陆丰市| 台南县| 定边县| 织金县| 麻江县| 平舆县| 浑源县| 陆丰市| 湾仔区| 台前县| 祥云县| 阿瓦提县| 叙永县| 富川| 绥中县| 县级市| 兴隆县| 仙桃市| 潢川县| 万载县| 潮安县| 枣阳市| 屏山县| 新宁县| 松阳县| 阿拉善右旗| 仁化县| 大石桥市| 土默特右旗| 杨浦区| 莲花县| 泰来县| 元朗区| 陆河县| 牡丹江市| 七台河市| 蒙山县| 彩票| 随州市|