2018-04-05 15:29:05 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
2019-02-03 18:29:41 +00:00
|
|
|
set dhcp.lan.ra_default=0
|
2018-07-07 19:14:26 +00:00
|
|
|
set dhcp.lan.dhcpv6=disabled
|
2018-04-05 15:29:05 +00:00
|
|
|
commit dhcp
|
|
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
|
|
|
|
|
|
exit 0
|