Tc Rip -

tc rip eth0 Would you like a more specific guide for traffic shaping removal, or for debugging a RIP routing issue?

type tc # Should be /sbin/tc alias tc # See if 'rip' is an alias which tc.rip # Unlikely but possible If it’s a script: tc rip

It seems you are asking for a . However, in standard Linux networking, there is no native command or subsystem named tc rip . tc rip eth0 Would you like a more

Then run:

# 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 Then run: # Add to ~/

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: