You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
13 lines
296 B
#!/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=server
|
|
set dhcp.lan.ra=server
|
|
commit dhcp
|
|
EOF
|
|
|