From 9a62439c282490622d5817f3464b1870e9f1b87c Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Fri, 1 Feb 2013 12:28:39 +0000 Subject: odhcp6c: switch to userspace RA-handling and offload address assignment to netifd SVN-Revision: 35419 --- package/network/ipv6/odhcp6c/files/dhcpv6.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 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 14b6fb63b4..99867cd99d 100755 --- a/package/network/ipv6/odhcp6c/files/dhcpv6.sh +++ b/package/network/ipv6/odhcp6c/files/dhcpv6.sh @@ -9,14 +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_dhcpv6_setup() { local config="$1" local iface="$2" - local reqaddress reqprefix clientid reqopts - json_get_vars reqaddress reqprefix clientid reqopts + local reqaddress reqprefix clientid reqopts allow_slaaconly + json_get_vars reqaddress reqprefix clientid reqopts allow_slaaconly # Configure @@ -28,6 +29,8 @@ proto_dhcpv6_setup() { [ -n "$clientid" ] && append opts "-c$clientid" + [ "$allow_slaaconly" = "1" ] && append opts "-S" + for opt in $reqopts; do append opts "-r$opt" done -- cgit v1.2.3