TC proved that you could stay true to your roots while reaching for the stars.
Then run:
tc rip eth0
# Add to ~/.bashrc tc() if [ "$1" = "rip" ] && [ -n "$2" ]; then echo "Removing all qdiscs on $2" command tc qdisc del dev "$2" root 2>/dev/null command tc qdisc del dev "$2" ingress 2>/dev/null echo "Traffic control removed from $2" else command tc "$@" fi