mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
8 lines
108 B
Bash
8 lines
108 B
Bash
#!/bin/sh
|
|
uci -q batch <<-EOF >/dev/null
|
|
set network.globals.packet_steering=1
|
|
commit network
|
|
EOF
|
|
|
|
exit 0
|