mirror of https://github.com/hak5/openwrt-owl.git
ar71xx: add default network config for wzr-hp-ag300h (based on a patch from #9607)
SVN-Revision: 27283owl
parent
ed7f41792a
commit
cc56af716c
|
@ -0,0 +1,26 @@
|
||||||
|
config interface loopback
|
||||||
|
option ifname lo
|
||||||
|
option proto static
|
||||||
|
option ipaddr 127.0.0.1
|
||||||
|
option netmask 255.0.0.0
|
||||||
|
|
||||||
|
config interface lan
|
||||||
|
option ifname eth0
|
||||||
|
option type bridge
|
||||||
|
option proto static
|
||||||
|
option ipaddr 192.168.1.1
|
||||||
|
option netmask 255.255.255.0
|
||||||
|
|
||||||
|
config interface wan
|
||||||
|
option ifname eth1
|
||||||
|
option proto dhcp
|
||||||
|
|
||||||
|
config switch
|
||||||
|
option name eth0
|
||||||
|
option reset 1
|
||||||
|
option enable_vlan 1
|
||||||
|
|
||||||
|
config switch_vlan
|
||||||
|
option device eth0
|
||||||
|
option vlan 1
|
||||||
|
option ports '0 1 2 3 4'
|
|
@ -154,6 +154,9 @@ ar71xx_board_name() {
|
||||||
*WRT400N)
|
*WRT400N)
|
||||||
name="wrt400n"
|
name="wrt400n"
|
||||||
;;
|
;;
|
||||||
|
*WZR-HP-AG300H)
|
||||||
|
name="wzr-hp-ag300h"
|
||||||
|
;;
|
||||||
*WZR-HP-G300NH)
|
*WZR-HP-G300NH)
|
||||||
name="wzr-hp-g300nh"
|
name="wzr-hp-g300nh"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue