aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/ipv6/odhcp6c/files/dhcpv6.sh
diff options
context:
space:
mode:
authorSteven Barth <cyrus@openwrt.org>2013-03-08 07:04:38 +0000
committerSteven Barth <cyrus@openwrt.org>2013-03-08 07:04:38 +0000
commit39a001dc697dd421022d801c438976302598900c (patch)
tree43ec84ea62762ce43bcca95b7314593f01e53e9b /package/network/ipv6/odhcp6c/files/dhcpv6.sh
parent1f77bfff9608f97996bffdb28dabec4e787631f6 (diff)
downloadupstream-39a001dc697dd421022d801c438976302598900c.tar.gz
upstream-39a001dc697dd421022d801c438976302598900c.tar.bz2
upstream-39a001dc697dd421022d801c438976302598900c.zip
odhcp6c: various bugfixes * Don't prematurely send RENEW / REBIND when T1 or T2 is > 1 day * Add "norelease" option to not send a RELEASE when stopping
SVN-Revision: 35902
Diffstat (limited to 'package/network/ipv6/odhcp6c/files/dhcpv6.sh')
-rwxr-xr-xpackage/network/ipv6/odhcp6c/files/dhcpv6.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.sh b/package/network/ipv6/odhcp6c/files/dhcpv6.sh
index b1837a9c6a..6cf7521fe0 100755
--- a/package/network/ipv6/odhcp6c/files/dhcpv6.sh
+++ b/package/network/ipv6/odhcp6c/files/dhcpv6.sh
@@ -10,6 +10,7 @@ proto_dhcpv6_init_config() {
proto_config_add_string "clientid"
proto_config_add_string "reqopts"
proto_config_add_string "noslaaconly"
+ proto_config_add_string "norelease"
proto_config_add_string "ip6prefix"
}
@@ -17,8 +18,8 @@ proto_dhcpv6_setup() {
local config="$1"
local iface="$2"
- local reqaddress reqprefix clientid reqopts noslaaconly ip6prefix
- json_get_vars reqaddress reqprefix clientid reqopts noslaaconly ip6prefix
+ local reqaddress reqprefix clientid reqopts noslaaconly norelease ip6prefix
+ json_get_vars reqaddress reqprefix clientid reqopts noslaaconly norelease ip6prefix
# Configure
@@ -32,6 +33,8 @@ proto_dhcpv6_setup() {
[ "$noslaaconly" = "1" ] && append opts "-S"
+ [ "$norelease" = "1" ] && append opts "-k"
+
for opt in $reqopts; do
append opts "-r$opt"
done