First, Thank You to the forum for all the great information on how to load OpenWRT onto my access point. It took a little time because the information was spread across several places, but I now have OpenWRT running. (I will post my process for upgrade once I get the configuration working.)
My challenge now is to integrate it back into my network. I have three of these access points that have experienced connectivity drops. (Known issue with the WAX214.) I am hopeful that the new firmware will solve that issue.
Here is my immediate challenge. My network has a VLAN configuration with three VLANs.
An Inside network, VLAN 30 (10.10.10.###),
a DMZ network, VLAN 20 (10.10..0.###), and
an Outside network, VLAN 15 (10.10.5.###).
The trunk line originates from a Netgear PoE switch, and all three VLANs are tagged. When I connect to the Trunk line, there is no connectivity (Ping, SSH, http)
If I connect directly to a port on the DMZ VLAN (VLAN 20), I can access the management interface, ping, and SSH without issue. (10.10.0.52).
Here is my network config file.
config interface 'loopback'
option device 'lo'
option proto 'static'
list ipaddr '127.0.0.1/8'
config globals 'globals'
option dhcp_default_duid '0004bb529b184a844a7987f4b75043d5673a'
option ula_prefix 'fd8f:7667:b786::/48'
option packet_steering '1'
config device
option name 'br-lan'
option type 'bridge'
list ports 'lan'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '10.10.0.52'
option netmask '255.255.255.0'
option gateway '10.10.0.1'
config bridge-vlan
option device 'br-lan'
option vlan '15'
list ports 'lan:t'
config bridge-vlan
option device 'br-lan'
option vlan '20'
list ports 'lan:t*'
config bridge-vlan
option device 'br-lan'
option vlan '30'
list ports 'lan:t'
config device
option name 'lan'
I’m hopeful that I am close. Any assistance is greatly appreciated. Once I have this working, I'll likely need some guidance on setting up the wireless networks and connecting them to the VLANs.
Thanks in advance.