diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-10 21:20:09 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-10 21:20:09 +0000 |
commit | ab70217680e5b0977900eb0f23276ddd1b16fd8e (patch) | |
tree | 5005d8e04f6a5381d76dc63adc0d85655a05e88a /openwrt/package/base-files/default | |
parent | 1603696e5ef22d41cdee385284f51b0405a44e0b (diff) |
add ipv6 support to network scripts (#101)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2885 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default')
-rw-r--r-- | openwrt/package/base-files/default/etc/hotplug.d/net/10-net | 3 |
1 files changed, 3 insertions, 0 deletions
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 ] || { |