Adapt default network configuration for IPv6
authorcyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 9 Apr 2013 08:03:08 +0000 (08:03 +0000)
committercyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 9 Apr 2013 08:03:08 +0000 (08:03 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36278 3c298f89-4303-0410-b956-a3cf2f4a3e73

19 files changed:
package/base-files/files/etc/config/network
package/base-files/files/lib/functions/uci-defaults.sh
target/linux/adm5120/base-files/etc/config/network
target/linux/adm8668/base-files/etc/config/network
target/linux/amazon/base-files/etc/config/network
target/linux/ar7/base-files/etc/config/network
target/linux/ar71xx/base-files/etc/defconfig/wndr3700/network
target/linux/iop32x/base-files/etc/config/network
target/linux/kirkwood/base-files/etc/uci-defaults/02_network
target/linux/lantiq/base-files/etc/uci-defaults/02_network
target/linux/mcs814x/base-files/etc/config/network
target/linux/orion/base-files/etc/config/network
target/linux/rb532/base-files/etc/config/network
target/linux/x86/alix2/base-files/etc/config/network
target/linux/x86/base-files/etc/defconfig/net4801/network
target/linux/x86/geos/base-files/etc/config/network
target/linux/x86/net5501/base-files/etc/config/network
target/linux/x86/olpc/base-files/etc/config/network
target/linux/x86/rdc/base-files/etc/config/network

index a35fd2e..f2afcd9 100644 (file)
@@ -12,3 +12,11 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
+
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
index 477c00c..959ae5e 100644 (file)
@@ -150,6 +150,8 @@ set network.loopback.ifname='lo'
 set network.loopback.proto='static'
 set network.loopback.ipaddr='127.0.0.1'
 set network.loopback.netmask='255.0.0.0'
+set network.globals='globals'
+set network.globals.ula_prefix='auto'
 EOF
 }
 
@@ -174,6 +176,7 @@ set network.lan.type='bridge'
 set network.lan.proto='static'
 set network.lan.ipaddr='192.168.1.1'
 set network.lan.netmask='255.255.255.0'
+set network.lan.ip6assign='64'
 EOF
 }
 
@@ -184,6 +187,9 @@ ucidef_set_interface_wan() {
 set network.wan='interface'
 set network.wan.ifname='$ifname'
 set network.wan.proto='dhcp'
+set network.wan6='interface'
+set network.wan6.ifname='@wan'
+set network.wan6.proto='dhcpv6'
 EOF
 }
 
index df2f201..8516e2d 100644 (file)
@@ -19,9 +19,21 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
 
 
 #### WAN configuration
 config interface       wan
        option ifname   "eth1"
        option proto    dhcp
+
+
+#### WAN6 configuration
+config interface       wan6
+       option ifname   "@wan"
+       option proto    dhcpv6
+
+
+#### Network global configuration
+config globals         globals
+       option ula_prefix auto
index 120db23..42f37e4 100644 (file)
@@ -10,7 +10,15 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
 
 config interface wan
        option ifname   eth1
        option proto    dhcp
+
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
index 72e39f8..167a5f8 100644 (file)
@@ -12,3 +12,7 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
+
+config globals globals
+       option ula_prefix auto
index 0576aa4..50a1edf 100644 (file)
@@ -13,6 +13,14 @@ config interface lan
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
        option nat      1
+       option ip6assign 64
+
+config interface wan6
+        option ifname   @wan
+        option proto    dhcpv6
+
+config globals globals
+        option ula_prefix auto
 
 ## Example for ATM bridging.
 ## Useful for PPPoE or IP over ATM. Will create 'nas${unit}'
index 69d7dc7..f2b3953 100644 (file)
@@ -10,11 +10,19 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
 
 config interface wan
        option ifname   eth1
        option proto    dhcp
 
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
+
 config switch
        option name     rtl8366s
        option reset    1
index 1d9b55b..2c3ca87 100644 (file)
@@ -9,3 +9,8 @@ config interface loopback
 config interface lan
        option ifname   eth0
        option proto    dhcp
+
+config interface lan6
+       option ifname   @lan
+       option proto    dhcpv6
+       option reqprefix no
index 48c1232..8c04fdb 100644 (file)
@@ -11,6 +11,10 @@ set_lan_dhcp() {
 set network.lan='interface'
 set network.lan.ifname='$ifname'
 set network.lan.proto='dhcp'
+set network.lan6='interface'
+set network.lan6.ifname='@lan'
+set network.lan6.proto='dhcpv6'
+set network.lan6.reqprefix='no'
 EOF
 }
 
index 1eadb56..006f1bc 100755 (executable)
@@ -21,6 +21,10 @@ set network.wan.ifname='nas0'
 set network.wan.proto='pppoe'
 set network.wan.username='foo'
 set network.wan.password='bar'
+set network.wan.ipv6='1'
+set network.wan6='interface'
+set network.wan6.ifname='@wan'
+set network.wan6.proto='dhcpv6'
 EOF
 }
 
index e24e824..717f048 100644 (file)
@@ -11,3 +11,11 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
+
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
index e7fdecd..644cbac 100644 (file)
@@ -20,3 +20,11 @@ config interface lan
         option proto    static
         option ipaddr   192.168.1.1
         option netmask  255.255.255.0
+       option ip6assign 64
+
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
index ee09491..6d963cd 100644 (file)
@@ -11,3 +11,11 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
+
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
index b46423f..9d70100 100644 (file)
@@ -14,7 +14,15 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
 
 config interface wan
        option ifname   eth0
        option proto    dhcp
+
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
index ff7b42d..4cbae10 100644 (file)
@@ -10,7 +10,15 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
 
 config interface wan
        option ifname   eth0
        option proto    dhcp
+
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
index f498383..c9c12e3 100644 (file)
@@ -12,6 +12,7 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
 
 config atm-bridge
        option unit     0
@@ -28,6 +29,14 @@ config interface wan
        # clone your eth0 address here
        # option macaddr '00:0A:FA:22:00:80'
 
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
+
+
 # 2nd interface on Geos2
 #config interface wan
 #      option proto    pppoa
index c0b6230..37b73d1 100644 (file)
@@ -12,7 +12,15 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
+       option ip6assign 64
 
 config interface wan
        option ifname   eth0
        option proto    dhcp
+
+config interface wan6
+       option ifname   @wan
+       option proto    dhcpv6
+
+config globals globals
+       option ula_prefix auto
index faa8f0e..dc0bee1 100644 (file)
@@ -9,3 +9,8 @@ config interface loopback
 config interface wlan
         option ifname   eth0
         option proto    dhcp
+
+config interface wlan6
+        option ifname   @wlan
+        option proto    dhcpv6
+        option reqprefix no
index 44c5794..2632d88 100644 (file)
@@ -12,7 +12,15 @@ config interface lan
         option proto    static
         option ipaddr   192.168.1.1
         option netmask  255.255.255.0
+        option ip6assign 64
 
 config interface wan
        option ifname   eth0
        option proto    dhcp
+
+config interface wan6
+        option ifname   @wan
+        option proto    dhcpv6
+
+config globals globals
+        option ula_prefix auto