Set up ipv6 address if provided in network configuration (#1028)
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 9 Dec 2006 16:57:31 +0000 (16:57 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 9 Dec 2006 16:57:31 +0000 (16:57 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5738 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/base-files/files/lib/network/config.sh

index 6ddbf9efeeb30463525a77cabea5778de441e668..845b33eb7e952d46496b1cbd70c112b6d3762c35 100755 (executable)
@@ -118,6 +118,7 @@ setup_interface() {
                        config_get dns "$config" dns
                        
                        $DEBUG ifconfig "$iface" "$ipaddr" netmask "$netmask"
+                       $DEBUG ifconfig "$iface" inet6 add "$ip6addr" 
                        [ -z "$gateway" ] || route add default gw "$gateway"
                        [ -z "$dns" -o -f /tmp/resolv.conf ] || {
                                for ns in $dns; do