projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
93157f4
)
add ipv6 support to network scripts (#101)
author
Felix Fietkau
<nbd@openwrt.org>
Tue, 10 Jan 2006 21:20:09 +0000
(21:20 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Tue, 10 Jan 2006 21:20:09 +0000
(21:20 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2885
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/default/etc/hotplug.d/net/10-net
patch
|
blob
|
history
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
7c8cd67
..
187b937
100644
(file)
--- 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 ] || {