mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 19:02:28 +02:00
add ipv6 support to network scripts (#101)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2885 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
1603696e5e
commit
ab70217680
@ -63,10 +63,13 @@ do_ifup() {
|
|||||||
case "$1" in
|
case "$1" in
|
||||||
static)
|
static)
|
||||||
ip=$(nvram get ${2}_ipaddr)
|
ip=$(nvram get ${2}_ipaddr)
|
||||||
|
ip6=$(nvram get ${2}_ip6addr)
|
||||||
netmask=$(nvram get ${2}_netmask)
|
netmask=$(nvram get ${2}_netmask)
|
||||||
gateway=$(nvram get ${2}_gateway)
|
gateway=$(nvram get ${2}_gateway)
|
||||||
|
|
||||||
$DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
|
$DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
|
||||||
|
[ -n "$ip6" ] && $DEBUG ifconfig $if add $ip6
|
||||||
|
|
||||||
${gateway:+$DEBUG route add default gw $gateway}
|
${gateway:+$DEBUG route add default gw $gateway}
|
||||||
|
|
||||||
[ -f /tmp/resolv.conf ] || {
|
[ -f /tmp/resolv.conf ] || {
|
||||||
|
Loading…
Reference in New Issue
Block a user