mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-03 13:23:08 +00:00
7 lines
156 B
Plaintext
7 lines
156 B
Plaintext
|
#!/bin/sh
|
||
|
for iface in $(tc qdisc show | grep hfsc | awk '{print $5}'); do
|
||
|
tc qdisc del dev "$iface" root
|
||
|
done
|
||
|
iptables -t mangle -F
|
||
|
iptables -t mangle -X
|