From 73dff0146c7045eaa5a3efb91c2ef4ba1b945103 Mon Sep 17 00:00:00 2001 From: cyrus Date: Fri, 1 Feb 2013 13:38:47 +0000 Subject: odhcp6c: allow IPv6-config via SLAAC-only if no prefix is requested git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35421 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/network/ipv6/odhcp6c/files/dhcpv6.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'package/network/ipv6/odhcp6c/files/dhcpv6.sh') diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.sh b/package/network/ipv6/odhcp6c/files/dhcpv6.sh index 99867cd99..4bd3a67ed 100755 --- a/package/network/ipv6/odhcp6c/files/dhcpv6.sh +++ b/package/network/ipv6/odhcp6c/files/dhcpv6.sh @@ -9,15 +9,15 @@ proto_dhcpv6_init_config() { proto_config_add_string "reqprefix" proto_config_add_string "clientid" proto_config_add_string "reqopts" - proto_config_add_string "allow_slaaconly" + proto_config_add_string "noslaaconly" } proto_dhcpv6_setup() { local config="$1" local iface="$2" - local reqaddress reqprefix clientid reqopts allow_slaaconly - json_get_vars reqaddress reqprefix clientid reqopts allow_slaaconly + local reqaddress reqprefix clientid reqopts noslaaconly + json_get_vars reqaddress reqprefix clientid reqopts noslaaconly # Configure @@ -29,7 +29,7 @@ proto_dhcpv6_setup() { [ -n "$clientid" ] && append opts "-c$clientid" - [ "$allow_slaaconly" = "1" ] && append opts "-S" + [ "$noslaaconly" = "1" ] && append opts "-S" for opt in $reqopts; do append opts "-r$opt" -- cgit v1.2.3