parent
a5ee266cd9
commit
684537f3e7
@ -1,3 +1,5 @@ |
|||||||
#!/bin/sh |
#!/bin/sh |
||||||
# Make dnsmasq reread hostfile |
# Make dnsmasq reread hostfile |
||||||
killall -SIGHUP dnsmasq |
|
||||||
|
pid=$(pidof dnsmasq) |
||||||
|
[ "$(readlink /proc/$pid/exe)" = "/usr/sbin/dnsmasq" ] && kill -SIGHUP $pid |
||||||
|
@ -0,0 +1,19 @@ |
|||||||
|
#!/bin/sh |
||||||
|
uci -q get dhcp.odhcpd && exit 0 |
||||||
|
touch /etc/config/dhcp |
||||||
|
|
||||||
|
uci batch <<EOF |
||||||
|
set dhcp.odhcpd=odhcpd |
||||||
|
set dhcp.odhcpd.maindhcp=0 |
||||||
|
set dhcp.odhcpd.leasefile=/tmp/hosts/odhcpd |
||||||
|
set dhcp.odhcpd.leasetrigger=/usr/sbin/odhcpd-update |
||||||
|
set dhcp.lan.dhcpv6=hybrid |
||||||
|
set dhcp.lan.ra=hybrid |
||||||
|
set dhcp.lan.ndp=hybrid |
||||||
|
set dhcp.wan6=dhcp |
||||||
|
set dhcp.wan6.dhcpv6=hybrid |
||||||
|
set dhcp.wan6.ra=hybrid |
||||||
|
set dhcp.wan6.ndp=hybrid |
||||||
|
set dhcp.wan6.master=1 |
||||||
|
commit dhcp |
||||||
|
EOF |
Loading…
Reference in new issue