X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=target%2Flinux%2Flantiq%2Fbase-files%2Fetc%2Fuci-defaults%2F02_network;h=428089ceb716c46e91e0ffc9cfcbf373b42a45e3;hp=1eadb5687b643eb2ff2604fc061b3b73e11a318e;hb=15139d468c9bcf80e3a110ea3625626d9895b5fe;hpb=e3a6ea65e1a80bcfa3f05ea38a22853dd464944d diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/02_network b/target/linux/lantiq/base-files/etc/uci-defaults/02_network old mode 100755 new mode 100644 index 1eadb5687b..428089ceb7 --- a/target/linux/lantiq/base-files/etc/uci-defaults/02_network +++ b/target/linux/lantiq/base-files/etc/uci-defaults/02_network @@ -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 } @@ -36,39 +40,111 @@ vpi=1 vci=32 encaps="llc" payload="bridged" +lan_mac="" +wan_mac="" board=$(lantiq_board_id) case "$board" in # adm6996 +ARV4510PW) + lan_mac=$(mtd_get_mac_ascii uboot_env ethaddr) + wan_mac=$(macaddr_add "$lan_mac" 1) + ucidef_set_interface_lan "eth0.1" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "3 2 1 0 5t" + ;; + ARV4520PW) ucidef_set_interface_lan "eth0.1" - ucidef_add_switch "eth0" "1" "1" - ucidef_add_switch_vlan "eth0" "1" "3 2 1 0 5t" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "3 2 1 0 5t" ;; ACMP252|GIGASX76X) ucidef_set_interface_lan "eth0.1" - ucidef_add_switch "eth0" "1" "1" - ucidef_add_switch_vlan "eth0" "1" "4 3 2 1 5t" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "4 3 2 1 5t" ;; # ar8316 -ARV4519PW|ARV7518PW) +ARV4519PW|ARV7510PW22|ARV7518PW|ARV752DPW22) ucidef_set_interface_lan "eth0.1" - ucidef_add_switch "eth0" "1" "1" - ucidef_add_switch_vlan "eth0" "1" "0t 2 3 4 5" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0t 2 3 4 5" + ;; + +# rtl8306g +ARV7519PW) + lan_mac=$(mtd_get_mac_binary board_config 22) + wan_mac=$(macaddr_add "$lan_mac" 1) + ucidef_set_interface_lan "eth0.1" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 4t" ;; WBMR) - ucidef_add_switch "eth0" "1" "0" - ucidef_add_switch_vlan "eth0" "1" "0 1 2 3 4 5" + ucidef_set_interface_lan "eth0.1" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0t 2 3 4 5" + ;; + +VG3503J) + ucidef_set_interface_lan 'eth0' + uci set network.lan.type='none' + ;; + +DGN3500*) + lan_mac=$(mtd_get_mac_ascii uboot-env ethaddr) + wan_mac=$(macaddr_add "$lan_mac" 1) + ucidef_set_interface_lan "eth0.1" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "3 2 1 0 5t" + ;; + +GR7000) + ucidef_set_interface_wan "eth0" + uci set network.lan.ifname='' ;; +H201L) + ucidef_set_interface_lan "eth0.1" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 4t" + ;; + +#rtl8306g +P2601HNFX) + ucidef_set_interface_lan "eth0.1" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t" + ;; + +P2812HNUFX) + ucidef_set_interface_lan 'eth0.1' + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0 1 2 4 5 6t" + ;; + +TDW8970) + lan_mac=$(mtd_get_mac_binary boardconfig 61696) + wan_mac=$(macaddr_add "$lan_mac" 1) + ;; + +ARV7519*) + lan_mac=$(mtd_get_mac_binary boardconfig 22) + wan_mac=$(macaddr_add "$lan_mac" 1) + ;; + +BTHOMEHUBV2B) + lan_mac=$(mtd_get_mac_ascii uboot_env ethaddr) + wan_mac=$(macaddr_add "$lan_mac" 1) + ;; esac [ -z "$(ls /lib/modules/`uname -r`/ltq_atm*)" ] || set_atm_wan "$vpi" "$vci" "$encaps" "$payload" - +[ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac +[ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac uci commit network