linux下監控網絡卡流量

2021-06-10 01:37:20 字數 840 閱讀 7566

#!/bin/bash

usage()

if [ $# -lt 2 ]

then

usage

fieth=$1

timer=$2

in_old=$(cat /proc/net/dev | grep $eth | sed -e "s/\(.*\)\:\(.*\)/\2/g" | awk '')

out_old=$(cat /proc/net/dev | grep $eth | sed -e "s/\(.*\)\:\(.*\)/\2/g" | awk '')

while true

do sleep $

in=$(cat /proc/net/dev | grep $eth | sed -e "s/\(.*\)\:\(.*\)/\2/g" | awk '')

out=$(cat /proc/net/dev | grep $eth | sed -e "s/\(.*\)\:\(.*\)/\2/g" | awk '')

dif_in=$(((in-in_old)/timer))

dif_in=$((dif_in/1024))

dif_out=$(((out-out_old)/timer))

dif_out=$((dif_out/1024))

ct=$(date +"%f %h:%m:%s")

echo "$ -- in: $ kbyte/s out: $ kbyte/s"

in_old=$

out_old=$

done

exit 0

Linux下監控網絡卡流量的軟體iftop

系統 centos 5.5 官網上說使用iftop需要libpcap和libcurses這兩個包。yum install y gcc flex byacc libpcap ncurses ncurses devel libpcap devel tcpdump 安裝iftop cd opt wget ...

Linux下監控網絡卡流量的軟體iftop

系統 centos 5.5 官網上說使用iftop需要libpcap和libcurses這兩個包。yum install y gcc flex byacc libpcap ncurses ncurses devel libpcap devel tcpdump 安裝iftop cd opt wget ...

iftop 監控 網絡卡流量

在類unix系統中可以使用top檢視系統資源 程序 記憶體占用等資訊。檢視網路狀態可以使用netstat nmap等工具。若要檢視實時的網路流量,監控tcp ip連線等,則可以使用iftop。iftop是類似於top的實時流量監控工具。官方 http www.ex parrot.com pdw if...