I'm probably a bit in over my head with this one, but hopefully someone can set me straight. I'm not used to routers having such a clean slate.
So I'm connecting the wireless router to a layer-3 Brocade 6450 switch with a transit network (vlan 99) over a pair of ports bonded w/LACP (lan 4 & 5) and a tagged port to another AP (lan3).
I've got the LACP handshaking after a bit of struggle. The internet appears to come up on the PC I'm testing with, and then nothing. Either hangs or internet loses connection.
After endless attempts at it, I am just about ready to give up. Everything feels like it should work, but when I connect everything up, I have no internet access. It just won't connect through somehow. I'm really hoping someone out there has some experience doing this that can tell me what I might be doing wrong.
Config file:
root@OpenWrt:~# cat /etc/config/network
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fde0:58f6:e33d::/48'
option packet_steering '1'
config device 'bond0'
option name 'bond0'
option type 'bonding'
list ports 'lan4'
list ports 'lan5'
option miimon '100'
option lacp_rate 'fast'
option xmit_hash_policy 'layer2+3'
option policy '802.3ad'
config device 'br_lan'
option name 'br-lan'
option type 'bridge'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
list ports 'bond0'
option vlan_filtering '1'
option pvid '1'
config bridge-vlan
option device 'br-lan'
option vlan '99'
list ports 'bond0:t'
list ports 'br-lan:t'
config bridge-vlan
option device 'br-lan'
option vlan '100'
list ports 'lan1:u*'
list ports 'lan3:t'
list ports 'bond0:t'
list ports 'br-lan:t'
config bridge-vlan
option device 'br-lan'
option vlan '111'
list ports 'lan2:u*'
list ports 'lan3:t'
list ports 'bond0:t'
list ports 'br-lan:t'
config bridge-vlan
option device 'br-lan'
option vlan '122'
list ports 'lan3:t'
list ports 'bond0:t'
list ports 'br-lan:t'
config interface 'wan'
option device 'eth1'
option proto 'dhcp'
config interface 'lan'
option device 'br-lan.100'
option proto 'static'
option ipaddr '192.168.100.2'
option netmask '255.255.255.0'
config interface 'transit'
option device 'br-lan.99'
option proto 'static'
option ipaddr '10.0.0.2'
option netmask '255.255.255.252'
config interface 'trust'
option device 'br-lan.111'
option proto 'static'
option ipaddr '192.168.111.2'
option netmask '255.255.255.0'
config interface 'untrust'
option device 'br-lan.122'
option proto 'static'
option ipaddr '192.168.122.2'
option netmask '255.255.255.0'
config route
option interface 'transit'
option target '192.168.0.0'
option netmask '255.255.0.0'
option gateway '10.0.0.1'
And I should mention that I have internet working on vlan100 now. connecting into any of the untagged ports on the switch has no effect. They don't pull an IP from the DHCP server.