From ac498665133dde1da895aaf72e7e8796b7b50e77 Mon Sep 17 00:00:00 2001 From: cyrus Date: Tue, 12 Feb 2013 08:23:54 +0000 Subject: odhcp6c: allow setting a user-provided prefix as well git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35570 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/network/ipv6/odhcp6c/files/dhcpv6.sh | 6 ++++-- 1 file changed, 4 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 4bd3a67ed..b1837a9c6 100755 --- a/package/network/ipv6/odhcp6c/files/dhcpv6.sh +++ b/package/network/ipv6/odhcp6c/files/dhcpv6.sh @@ -10,14 +10,15 @@ proto_dhcpv6_init_config() { proto_config_add_string "clientid" proto_config_add_string "reqopts" proto_config_add_string "noslaaconly" + proto_config_add_string "ip6prefix" } proto_dhcpv6_setup() { local config="$1" local iface="$2" - local reqaddress reqprefix clientid reqopts noslaaconly - json_get_vars reqaddress reqprefix clientid reqopts noslaaconly + local reqaddress reqprefix clientid reqopts noslaaconly ip6prefix + json_get_vars reqaddress reqprefix clientid reqopts noslaaconly ip6prefix # Configure @@ -35,6 +36,7 @@ proto_dhcpv6_setup() { append opts "-r$opt" done + [ -n "$ip6prefix" ] && proto_export "USERPREFIX=$ip6prefix" proto_export "INTERFACE=$config" proto_run_command "$config" odhcp6c \ -- cgit v1.2.3