檢視網絡卡資訊,頻寬資訊
[root@workip ~]# ethtool eth0
settings for eth0:
supported ports: [ tp ]
supported link modes: 10baset/half 10baset/full
100baset/half 100baset/full
1000baset/full
supported pause frame use: no
supports auto-negotiation: yes
advertised link modes: 10baset/half 10baset/full
100baset/half 100baset/full
1000baset/full
advertised pause frame use: no
advertised auto-negotiation: yes
speed: 1000mb/s #這裡代表是1000m口
duplex: full
port: twisted pair
phyad: 0
transceiver: internal
auto-negotiation: on
mdi-x: unknown
supports wake-on: d
wake-on: d
current message level: 0x00000007 (7)
drv probe link
link detected: yes
下面的這些工具都可以通過yum install ***來安裝,如果安裝失敗,檢查一下yum庫,更新一下。我用的是aly的庫使用iftop可以檢視不同機器之間流量排行2. nload可以檢視實時的流量資訊
iptraf這個功能看起來很強大,後續研究一下
可以直接使用命令檢視tcp連線數
參考:
#netstat -n | awk '/^tcp/ end '
time_wait 593
syn_sent 30
established 39
closing 2
只看連線數
#netstat
-nat
|grep established|wc -l
1164
Linux系統監控
檢視cpu 核數cat proc cpuinfo grep cpu cores uniq 檢視cpu 型號cat proc cpuinfo grep model name uniq 檢視記憶體總數 cat proc meminfo grep memtotal 檢視硬碟大小 fdisk l grep ...
linux 系統監控
1.top top d 1 每秒重新整理一次 2.vmstat 3.lsof 它常用於以列表的形式顯示所有開啟的檔案和程序。開啟的檔案包括磁碟檔案 網路套接字 管道 裝置和程序。使用這條命令的主要情形之一就是在無法掛載磁碟和顯示正在使用或者開啟某個檔案的錯誤資訊的時候,使用這條命令,你可以很容易地看...
linux網路監控工具
iftop 這個工具需要yum源才可以yum安裝 我有個epel的源的文章,在裡面可以找到,但是我喜歡yum安裝,比較懶 直接使用命令 iftop 介面簡單的很 你安裝h還可以做出許多選項。iftop i 介面 可以監控網絡卡。具體的命令自己可以iftop help nmap yum install...