I'm using @arokh's latest OpenWRT builds on my WNDR3700. I'm using this box as a wireless access point only; I already have another device acting as gateway/router. With this in mind, I wanted to bridge the WAN and LAN ports. Below is my current /etc/config/network. This does not work; I am unable to ping across the WAN/LAN interfaces... what am I doing wrong?
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 'type' 'bridge'
option 'proto' 'static'
option 'netmask' '255.255.255.0'
option 'ifname' 'eth0.1 eth1'
option 'ipaddr' '192.168.2.5'
option 'gateway' '192.168.2.1'
option 'dns' '192.168.2.1'
config 'switch'
option 'name' 'rtl8366s'
option 'reset' '1'
option 'enable_vlan' '1'
option 'blinkrate' '2'
config 'switch_vlan'
option 'device' 'rtl8366s'
option 'vlan' '1'
option 'ports' '0 1 2 3 5t'
config 'switch_port'
option 'device' 'rtl8366s'
option 'port' '1'
option 'led' '6'
config 'switch_port'
option 'device' 'rtl8366s'
option 'port' '2'
option 'led' '9'
config 'switch_port'
option 'device' 'rtl8366s'
option 'port' '5'
option 'led' '2'