Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> linux查看主機網卡流量

linux查看主機網卡流量

日期:2017/2/7 14:33:20      編輯:Linux教程
 

#!/bin/bash
#network
#Mike.Xu
while : ; do
time='date+%m"-"%d" "%k":"%M'
day='date+%m"-"%d'
rx_before='ifconfigeth0|sed -n "8"p|awk '{print $2}'|cut -c7-'
tx_before='ifconfigeth0|sed -n "8"p|awk '{print $6}'|cut -c7-'
sleep 2
rx_after='ifconfigeth0|sed -n "8"p|awk '{print $2}'|cut -c7-'
tx_after='ifconfigeth0|sed -n "8"p|awk '{print $6}'|cut -c7-'
rx_result=$[(rx_after-rx_before)/256]
tx_result=$[(tx_after-tx_before)/256]
echo "$timeNow_In_Speed: "$rx_result"kbps Now_OUt_Speed:"$tx_result"kbps"
sleep 2
done

Copyright © Windows教程網 All Rights Reserved