Answers:
您想要查看的数据显示在旧的ifconfig中。
watch ifconfig eth0
或使情况变得更好:
watch -n 1 -d ifconfig eth0
ifconfig
。
我使用iftop命令。它实时显示统计信息。
iftop -i eth0
在这里签出一些场景:
http://www.thegeekstuff.com/2008/12/iftop-guide-display-network-interface-bandwidth-usage-on-linux/
有很多实用程序:
您也可以使用iptables进行这样的思考:
iptables -A INPUT -p tcp --dport $port -i eth0
和
iptables -A OUTPUT -p tcp --sport $port -i eth0
然后iptables -L -n -v将显示通过接口的数据包数量,iptables -Z将该计数清零
function humanValue()
{
h=( '' K M G T P )
i=1; v=$(( $1 * 8 ))
while [ $v -gt $(( 1 << 10 * i )) ]; do let i++; done;
echo -n "$(( $v >> 10 * --i )) ${h[i]}b/s";
}
ifaces=$(ip addr | grep -E "^[0-9]:" | cut -d" " -f2 | tr -d \:)
declare -A RX2 TX2;
while sleep 1;
do
date
for INTERFACE in $ifaces;
do
RX1=$(cat /sys/class/net/${INTERFACE}/statistics/rx_bytes)
TX1=$(cat /sys/class/net/${INTERFACE}/statistics/tx_bytes)
DOWN=$(( RX1 - RX2[$INTERFACE] ))
UP=$(( TX1 - TX2[$INTERFACE] ))
RX2[$INTERFACE]=$RX1; TX2[$INTERFACE]=$TX1
echo -e "[ $INTERFACE:\tRX: $(humanValue $DOWN)\t|\tTX: $(humanValue $UP) ]"
done;
done;