aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/odhcpd/files/odhcpd.defaults
diff options
context:
space:
mode:
authorSteven Barth <cyrus@openwrt.org>2014-01-17 13:59:51 +0000
committerSteven Barth <cyrus@openwrt.org>2014-01-17 13:59:51 +0000
commit684537f3e7eff48bb0e56a73220746e28678e1d7 (patch)
tree91ab3fa815a2556042456ba323ba8570d35631c9 /package/network/services/odhcpd/files/odhcpd.defaults
parenta5ee266cd9f4f7909aa7df0bff2e96a0e9199611 (diff)
downloadupstream-684537f3e7eff48bb0e56a73220746e28678e1d7.tar.gz
upstream-684537f3e7eff48bb0e56a73220746e28678e1d7.tar.bz2
upstream-684537f3e7eff48bb0e56a73220746e28678e1d7.zip
odhcpd: several bugfixes and improved integration
SVN-Revision: 39308
Diffstat (limited to 'package/network/services/odhcpd/files/odhcpd.defaults')
-rw-r--r--package/network/services/odhcpd/files/odhcpd.defaults19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/network/services/odhcpd/files/odhcpd.defaults b/package/network/services/odhcpd/files/odhcpd.defaults
new file mode 100644
index 0000000000..4d360454a9
--- /dev/null
+++ b/package/network/services/odhcpd/files/odhcpd.defaults
@@ -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