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
|
|
/usr/lib/qos/generate.sh firewall stop | sh
|