mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41228 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
296 B
Bash
14 lines
296 B
Bash
#!/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
|