mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-06 18:10:43 +01:00
6 lines
156 B
Bash
Executable file
6 lines
156 B
Bash
Executable file
#!/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
|