NETSTAT日常應用歸檔

來源:互聯網
上載者:User

標籤:netstat   日常   應用歸檔   

netstat -na
顯示所有活動的Internet串連到伺服器,僅包括已建立的串連。

netstat -an|grep :80|sort
查看80連接埠串連數

netstat -n -p|grep SYN_REC |wc -l
查看伺服器上發生的活動SYNC_REC有多少,這個數字應該相當低,最好不到5點。

netstat -n -p|grep SYN_REC |sort
列出涉及的所有IP地址,而不是僅計數

netstat -n -p |grep SYN_REC|awk ‘{print $5}‘|awk -F: ‘{print $1}‘
顯示發送SYN_REC串連狀態的IP地址

netstat -ntu |awk ‘{print $5}‘|cut -d: -f1|sort|uniq -c|sort -rn
統計每個IP地址對伺服器的串連數

netstat -anp|grep ‘tcp|udp‘|awk ‘{print $5}‘|cut -d: -f1|sort|uniq -c|sort -rn
顯示使用TCP或UDP協議將IP串連到伺服器的串連數

netstat -ntu |grep ESTAB |awk ‘{print $5}‘|cut -d: -f1|sort|uniq -c|sort -nr
檢查ESTABLISHED串連數,並顯示統計每個IP的串連數

netstat -plan|grep :80|awk {‘print $5‘}|cut -d: -f 1|sort|uniq -c|sort -nrk 1
顯示和列出通過80連接埠串連本機伺服器的IP地址及其串連數

本文出自 “boyhack” 部落格,請務必保留此出處http://461205160.blog.51cto.com/274918/1956111

NETSTAT日常應用歸檔

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.