1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 22:54:36 +03:00
openwrt-xburst/package/qos-scripts/files/usr/bin/qos-stat

17 lines
401 B
Plaintext
Raw Normal View History

#!/bin/sh
echo '#################'
echo '# EGRESS STATUS #'
echo '#################'
echo
for iface in $(tc qdisc show | grep hfsc | awk '{print $5}' | grep -v imq); do
tc -s class show dev "$iface"
done
echo '##################'
echo '# INGRESS STATUS #'
echo '##################'
echo
for iface in $(tc qdisc show | grep hfsc | awk '{print $5}' | grep imq); do
tc -s class show dev "$iface"
done