From 528c719a3ff0df2fdcc4b25e574bb82fc5f08550 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 6 May 2013 10:20:43 +0000 Subject: odhcp6c: Make SLAAC-only work without reqprefix=no Previously if the upstream router did not provide any DHCPv6-service the wan6 interface would not come up even if RAs were received. The new behavior allows the wan6 interface to comeup with RA-only configuration after a timeout of 10s. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36555 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/network/ipv6/odhcp6c/files/dhcpv6.script | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'package/network/ipv6/odhcp6c/files/dhcpv6.script') diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.script b/package/network/ipv6/odhcp6c/files/dhcpv6.script index 56f8c39ca4..c81ffee65d 100755 --- a/package/network/ipv6/odhcp6c/files/dhcpv6.script +++ b/package/network/ipv6/odhcp6c/files/dhcpv6.script @@ -78,7 +78,11 @@ teardown_interface() { } case "$2" in - informed|bound|updated|rebound|ra-updated) + bound) + teardown_interface "$1" + setup_interface "$1" + ;; + informed|updated|rebound|ra-updated) setup_interface "$1" ;; started|stopped|unbound) -- cgit v1.2.3