shell: quick linux scripts for showing network bandwidth or packets-per-second
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo | |
echo usage: $0 network-interface | |
echo | |
echo e.g. $0 eth0 | |
echo | |
echo shows packets-per-second | |
exit | |
fi | |
IF=$1 | |
while true | |
do | |
R1=`cat /sys/class/net/$1/statistics/rx_packets` | |
T1=`cat /sys/class/net/$1/statistics/tx_packets` | |
sleep 1 | |
R2=`cat /sys/class/net/$1/statistics/rx_packets` | |
T2=`cat /sys/class/net/$1/statistics/tx_packets` | |
TXPPS=`expr $T2 - $T1` | |
RXPPS=`expr $R2 - $R1` | |
echo "tx $1: $TXPPS pkts/s rx $1: $RXPPS pkts/s" | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo | |
echo usage: $0 network-interface | |
echo | |
echo e.g. $0 eth0 | |
echo | |
exit | |
fi | |
IF=$1 | |
while true | |
do | |
R1=`cat /sys/class/net/$1/statistics/rx_bytes` | |
T1=`cat /sys/class/net/$1/statistics/tx_bytes` | |
sleep 1 | |
R2=`cat /sys/class/net/$1/statistics/rx_bytes` | |
T2=`cat /sys/class/net/$1/statistics/tx_bytes` | |
TBPS=`expr $T2 - $T1` | |
RBPS=`expr $R2 - $R1` | |
TKBPS=`expr $TBPS / 1024` | |
RKBPS=`expr $RBPS / 1024` | |
echo "tx $1: $TKBPS kB/s rx $1: $RKBPS kB/s" | |
done |
My version of the script:
#!/bin/bash
# shellcheck disable=SC2034
i=$1
c=$2
e=1
if [ -z "$1" ] || [ -z "$2" ]; then
echo
echo usage: "$0" network-interface checkrepeats
echo e.g. "$0" eth0 10
echo
exit
fi
while [ "$e" -le "$c" ]
do
# Network Interface Load:
R1=$(cat /sys/class/net/"$1"/statistics/rx_bytes)
T1=$(cat /sys/class/net/"$1"/statistics/tx_bytes)
sleep 1
R2=$(cat /sys/class/net/"$1"/statistics/rx_bytes)
T2=$(cat /sys/class/net/"$1"/statistics/tx_bytes)
TBPS=$(expr $T2 - $T1)
RBPS=$(expr $R2 - $R1)
TKBPS=$(expr $TBPS / 1024)
RKBPS=$(expr $RBPS / 1024)
# CPU Load:
CPU_LOAD=$(top -bn1 | grep "Cpu(s)" | sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | awk '{print 100 - $1"%"}') # percentage of CPU in use
MEM_LOAD=$(free | grep Mem | awk '{print $3/$2 * 100.0}') # percentage of Memory in use
echo "$1 tx: $TKBPS kB/s rx: $RKBPS kB/s, $(nproc) CPUs @ $CPU_LOAD load, $MEM_LOAD% Memory in use"
(( e++ ))
done
very nice, thank you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nicnepr I came across this new (to me, at least) tool written in Rust that will show network usage by application. It's also cross-platform. Might want to check it out.
https://github.com/imsnif/bandwhich