summaryrefslogtreecommitdiff
path: root/openwrt
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-01-10 21:20:09 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-01-10 21:20:09 +0000
commit8b81cb2cb258bdc0f157b1b65ba29d85d04eeb32 (patch)
tree3c55fb7c82417ad4bc65e2f473a564914ea2c203 /openwrt
parent2eccbe55a3ceb66c65ae51e74db6fbddb090769e (diff)
downloadmtk-20170518-8b81cb2cb258bdc0f157b1b65ba29d85d04eeb32.zip
mtk-20170518-8b81cb2cb258bdc0f157b1b65ba29d85d04eeb32.tar.gz
mtk-20170518-8b81cb2cb258bdc0f157b1b65ba29d85d04eeb32.tar.bz2
add ipv6 support to network scripts (#101)
SVN-Revision: 2885
Diffstat (limited to 'openwrt')
-rw-r--r--openwrt/package/base-files/default/etc/hotplug.d/net/10-net3
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 7c8cd67..187b937 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 ] || {