- #!/bin/bash
- # GPLv3+ see COPYING.GPL
- # if there's a bottleneck at the network level, shows who's responsible
- while sleep 3; do clear; ss -p | grep -i 'tcp' | awk -F' ' '{print $4 "\t" $5 "\t" $6 "\t" $7 $8}' | sort -nr | head -n 20; done # | sort -nr | head -n 10; done
|