file $(which tc) # Should be binary, not script grep -r "rip" /etc/rc* /usr/local/bin/ 2>/dev/null | Task | Command | |------|---------| | Remove all shaping on eth0 | tc qdisc del dev eth0 root | | Remove only ingress policing | tc qdisc del dev eth0 ingress | | Clear all filters on parent 1: | tc filter del dev eth0 parent 1: | | Reset interface to no shaping (safe) | tc qdisc del dev eth0 root; tc qdisc add dev eth0 root pfifo | | List current qdiscs (to see what to rip) | tc qdisc show dev eth0 | | List filters | tc filter show dev eth0 | Final Suggestion If you absolutely need a command tc rip , you can create it yourself as a shell function:
Then run:
tc rip eth0 Would you like a more specific guide for traffic shaping removal, or for debugging a RIP routing issue? tc rip