Skip to content

Instantly share code, notes, and snippets.

@hvardhanx
Created May 1, 2019 16:40
Show Gist options
  • Save hvardhanx/d5028d40142d05a55267f6078a7dd768 to your computer and use it in GitHub Desktop.
Save hvardhanx/d5028d40142d05a55267f6078a7dd768 to your computer and use it in GitHub Desktop.
Net Packet per second
#!/bin/bash
INTERVAL="1" # update interval in seconds
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 $INTERVAL
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment