ipv6-support: Fix default RA settings for dnsmasq

SVN-Revision: 34873
This commit is contained in:
Steven Barth 2012-12-23 18:22:48 +00:00
parent a1e2b2ebe8
commit 970adc9eb9
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=ipv6-support
PKG_VERSION:=2012-12-22
PKG_VERSION:=2012-12-23
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk

View File

@ -438,12 +438,12 @@ enable_router() {
if [ "$router_service" == "dnsmasq" ]; then
local dnsmasq_opts
config_get dnsmasq_opts global dnsmasq_opts
[ -z "$dnsmasq_opts" ] && dnsmasq_opts="ra-stateful,ra-names"
config_get dnsmasq_opts "$network" dnsmasq_opts
[ -z "$dnsmasq_opts" ] && dnsmasq_opts="ra-names,24h"
local conf="/var/etc/dnsmasq.d/ipv6-router-$network.conf"
mkdir -p $(dirname $conf)
echo "dhcp-range=::1,constructor:$device,$dnsmasq_opts" > $conf
echo "dhcp-range=::00ff,::ffff,constructor:$device,$dnsmasq_opts" > $conf
echo "enable-ra" >> $conf
/etc/init.d/dnsmasq restart
else