From: Felix Fietkau Date: Tue, 10 Jan 2006 21:20:09 +0000 (+0000) Subject: add ipv6 support to network scripts (#101) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=17c357ae4b07c7e25624aaf27addb2c3dfa9e5db add ipv6 support to network scripts (#101) SVN-Revision: 2885 --- diff --git a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net index 7c8cd67a4e..187b937c60 100644 --- a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net +++ b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net @@ -63,10 +63,13 @@ do_ifup() { case "$1" in static) ip=$(nvram get ${2}_ipaddr) + ip6=$(nvram get ${2}_ip6addr) netmask=$(nvram get ${2}_netmask) gateway=$(nvram get ${2}_gateway) $DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up + [ -n "$ip6" ] && $DEBUG ifconfig $if add $ip6 + ${gateway:+$DEBUG route add default gw $gateway} [ -f /tmp/resolv.conf ] || {