diff options
author | Steven Barth <cyrus@openwrt.org> | 2013-02-01 13:38:47 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2013-02-01 13:38:47 +0000 |
commit | e2193a69c83506ceaddefb2fd3f175059e1b5bcc (patch) | |
tree | 38e34a020d9185e177d13db4e9f41e9093b19da8 /package/network/ipv6/odhcp6c/files | |
parent | 6a43437908e507bdca1cdf8c0534a1f88dd1e6e4 (diff) | |
download | upstream-e2193a69c83506ceaddefb2fd3f175059e1b5bcc.tar.gz upstream-e2193a69c83506ceaddefb2fd3f175059e1b5bcc.tar.bz2 upstream-e2193a69c83506ceaddefb2fd3f175059e1b5bcc.zip |
odhcp6c: allow IPv6-config via SLAAC-only if no prefix is requested
SVN-Revision: 35421
Diffstat (limited to 'package/network/ipv6/odhcp6c/files')
-rwxr-xr-x | package/network/ipv6/odhcp6c/files/dhcpv6.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.sh b/package/network/ipv6/odhcp6c/files/dhcpv6.sh index 99867cd99d..4bd3a67ed9 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" |