linux 查看即时网速

linux 查看即时网速
查看流量 watch -n 1 "/sbin/ifconfig eth0 | grep bytes"
终端下网速监测工具 -- Speedometer
Speedometer 可以同时检测多个网络接口、文件, 并在一起显示出来, 只要你的屏幕够大~
Speedmeter 的主页: http://excess.org/speedometer/
./speedometer.py -t eth0   发
./speedometer.py -r eth0  收

1. #  iptraf -g   // 这个最直观

2. iperf  Iperf 是一个网络性能测试工具。Iperf 可以测试最大 TCP 和 UDP 带宽性能。Iperf 具有多种参数和 UDP 特性,可以根据需要调整。Iperf 可以报告带宽,延迟抖动和数据包丢失
TCP:
server(pc):  iperf -s -i 1
client(ls1b):  iperf -t 20 -i 1 -c 192.168.1.167 (pc-ip)
UDP:
server(pc): iperf  -u -s -i 1
client(ls1b): iperf -t 10 -i 1 -u -b 1000M  -c 192.168.1.90

3. #  ifconfig -a
eth0:Link encap:Ethernet  HWaddr 00:1e:64:63:ab:fe  
          inet addr:192.168.3.103  Bcast:192.168.3.255  Mask:255.255.255.0
          inet6 addr: fe80::21e:64ff:fe63:abfe/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:70283 errors:0 dropped:0 overruns:0 frame:0
          TX packets:46701 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:73276012 (73.2 MB)  TX bytes:6267375 (6.2 MB)
4. #  mii-tool -w -v  // 更详细的用法 man mii-tool

5. ethtool 是用来显示和更改网卡设置的工具 更详细的用法 man ethtool
# ethtool eth0   // 显示网络端口设置功能 
Settings for eth0:
    Supported ports: [TP MII]
    Supported link modes:   10baseT/Half 10baseT/Full 
                            100baseT/Half 100baseT/Full 
    Supports auto-negotiation: Yes
    Advertised link modes:  10baseT/Half 10baseT/Full 
                            100baseT/Half 100baseT/Full 
    Advertised pause frame use: No
    Advertised auto-negotiation: Yes
    Link partner advertised link modes:  Not reported
    Link partner advertised pause frame use: No
    Link partner advertised auto-negotiation: No
    Speed: 10Mb/s
    Duplex: Half
    Port: MII
    PHYAD: 0
    Transceiver: internal
    Auto-negotiation: on
    Supports Wake-on: pumbg
    Wake-on: g
    Current message level: 0x00000033 (51)
    Link detected: no
# ethtool -i eth0  // 显示跟硬件相关的信息
driver: r8169
version: 2.3LK-NAPI
firmware-version: 
bus-info: 0000:05:00.0

6. # watch -n 1 "/sbin/ifconfig eth0 | grep bytes" 

1. sar -n DEV 1 2
sar 命令包含在 sysstat 工具包中,提供系统的众多统计数据。其在不同的系统上命令有些差异,某些系统提供的 sar 支持基于网络接口的数据统计,也可以查看设备上每秒收发包的个数和流量。
sar –n DEV 1 2
命令后面 1 2 意思是:每一秒钟取 1 次值,取 2 次。
DEV 显示网络接口信息
另外,-n 参数很有用,他有 6 个不同的开关:DEV | EDEV | NFS | NFSD | SOCK | ALL ,其代表的含义如下:
DEV 显示网络接口信息。
EDEV 显示关于网络错误的统计数据。
NFS 统计活动的 NFS 客户端的信息。
NFSD 统计 NFS 服务器的信息
SOCK 显示套接字信息
ALL 显示所有 5 个开关
[sre@CDVM-213017031 ~]$ sar -n DEV 1 2
Linux 2.6.32-431.el6.x86_64 (CDVM-213017031)  05/04/2017  _x86_64_ (4 CPU)
08:05:30 PM  IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s
08:05:31 PM  lo  0.00  0.00  0.00  0.00  0.00  0.00  0.00
08:05:31 PM  eth0 1788.00 1923.00 930.47 335.60  0.00  0.00  0.00
08:05:31 PM  IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s
08:05:32 PM  lo  0.00  0.00  0.00  0.00  0.00  0.00  0.00
08:05:32 PM  eth0 1387.00 1469.00 652.12 256.98  0.00  0.00  0.00
Average:  IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s
Average:   lo  0.00  0.00  0.00  0.00  0.00  0.00  0.00
Average:   eth0 1587.50 1696.00 791.29 296.29  0.00  0.00  0.00
参数说明:
IFACE:LAN 接口
rxpck/s:每秒钟接收的数据包
txpck/s:每秒钟发送的数据包
rxbyt/s:每秒钟接收的字节数
txbyt/s:每秒钟发送的字节数
rxcmp/s:每秒钟接收的压缩数据包
txcmp/s:每秒钟发送的压缩数据包
rxmcst/s:每秒钟接收的多播数据包
rxerr/s:每秒钟接收的坏数据包
txerr/s:每秒钟发送的坏数据包
coll/s:每秒冲突数
rxdrop/s:因为缓冲充满,每秒钟丢弃的已接收数据包数
txdrop/s:因为缓冲充满,每秒钟丢弃的已发送数据包数
txcarr/s:发送数据包时,每秒载波错误数
rxfram/s:每秒接收数据包的帧对齐错误数
rxfifo/s:接收的数据包每秒 FIFO 过速的错误数
txfifo/s:发送的数据包每秒 FIFO 过速的错误数
这种方式简单,直观,推荐使用。
2. 实时监控脚本
cat >ethspeedshow.sh<<"EOF"
#!/bin/bash
ethn=$1

while true
do
 RX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}')
 TX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $10}')
 sleep 1
 RX_next=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}')
 TX_next=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $10}')
 
 clear
 echo -e "\t RX `date +%k:%M:%S` TX"
 
 RX=$((${RX_next}-${RX_pre}))
 TX=$((${TX_next}-${TX_pre}))
 
 if [[ $RX -lt 1024 ]];then
 RX="${RX}B/s"
 elif [[ $RX -gt 1048576 ]];then
 RX=$(echo $RX | awk '{print $1/1048576 "MB/s"}')
 else
 RX=$(echo $RX | awk '{print $1/1024 "KB/s"}')
 fi
 
 if [[ $TX -lt 1024 ]];then
 TX="${TX}B/s"
 elif [[ $TX -gt 1048576 ]];then
 TX=$(echo $TX | awk '{print $1/1048576 "MB/s"}')
 else
 TX=$(echo $TX | awk '{print $1/1024 "KB/s"}')
 fi
 
 echo -e "$ethn \t $RX $TX "
 
done
EOF
chmod +x ethspeedshow.sh
./ethspeedshow.sh eth1.1

# 小米ax6000温度
echo -e wifi1: $(cat /sys/devices/platform/soc/a0000000.pci/pci0001:00/0001:00:00.0/0001:01:00.0/net/wifi1/thermal/temp)
echo -e wifi0: $(cat /sys/devices/platform/soc/c000000.wifi/net/wifi0/thermal/temp)
echo -e cpu0: $(cat /sys/class/thermal/thermal_zone0/temp)
echo -e cpu1: $(cat /sys/class/thermal/thermal_zone1/temp)
echo -e cpu2: $(cat /sys/class/thermal/thermal_zone2/temp)
echo -e cpu3: $(cat /sys/class/thermal/thermal_zone3/temp)


# 此脚本不需要额外再安装软件,并且可自定义欲查看接口,精确到小数,可根据流量大小灵活显示单位,默认采集间隔为 1 秒。
# 用法为:
# 1、将脚本保存为可执行脚本文件,比如叫 net.sh。
# 2、chmod +x ./net.sh 将文件改成可执行脚本。
# 3、sh net.sh eth0 即可开始监看接口 eth0 流量,按 ctrl+c 退出。
# 脚本是通过读取运行时文件系统 / proc/net/dev 中的网络实时数据,并通过简单计算得到的。关于目录 / proc/net/dev,请参考下文。
3. cat /proc/net/dev
Linux 内核提供了一种通过 /proc 文件系统,在运行时访问内核内部数据结构、改变内核设置的机制。proc 文件系统是一个伪文件系统,它只存在内存当中,而不占用外存空间。它以文件系统的方式为访问系统内核数据的操作提供接口。用户和应用程序可以通过 proc 得到系统的信息,并可以改变内核的某些参数。由于系统的信息,如进程,是动态改变的,所以用户或应用程序读取 proc 文件时,proc 文件系统是动态从系统内核读出所需信息并提交的。/proc 文件系统中包含了很多目录,其中 / proc/net/dev 保存了网络适配器及统计信息。
[sre@CDVM-213017031 ~]$ cat /proc/net/dev
Inter-| Receive            | Transmit
 face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
 lo:137052296 108029 0 0 0  0   0   0 137052296 108029 0 0 0  0  0   0
 eth0:13661574714188 31346790620 0 0 0  0   0   0 5097461049535 27671144304 0 0 0  0  0   0
最左边的表示接口的名字,Receive 表示收包,Transmit 表示发送包;
  bytes 表示收发的字节数;
  packets 表示收发正确的包量;
  errs 表示收发错误的包量;
  drop 表示收发丢弃的包量;
其实,我们平时经常用的很多查看网卡实时流量的命令,都是通过读取该目录下的实时流量,并通过简单计算得到的。

4. 使用 watch 命令,配合 ifconfig、more /proc/net/dev、cat /proc/net/dev 来实时监控。比如执行 watch -n 1 "ifconfig eth0"
Every 1.0s: ifconfig eth0Thu May 4 20:26:45 2017
 
eth0  Link encap:Ethernet HWaddr FA:16:3E:7E:55:D1
   inet addr:10.213.17.31 Bcast:10.213.23.255 Mask:255.255.248.0
   inet6 addr: fe80::f816:3eff:fe7e:55d1/64 Scope:Link
   UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
   RX packets:31350149703 errors:0 dropped:0 overruns:0 frame:0
   TX packets:27674701465 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:1000
   RX bytes:13663400883450 (12.4 TiB) TX bytes:5098104759633 (4.6 TiB)
watch 可以帮你监测一个命令的运行结果,省得你一遍遍的手动运行。在 Linux 下,watch 是周期性的执行下个程序,并全屏显示执行结果。

huan

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: