summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
Diffstat (limited to 'package')
-rw-r--r--package/base-files/default/etc/hotplug.d/net/10-net3
1 files changed, 3 insertions, 0 deletions
diff --git a/package/base-files/default/etc/hotplug.d/net/10-net b/package/base-files/default/etc/hotplug.d/net/10-net
index 7c8cd67a4..187b937c6 100644
--- a/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/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 ] || {