Hello! This is my first post here.
To keep it short, let me get straight to the point.
I have 1 main router and 1 dumb AP with 2 SSIDs, 2 VLANs, and 2 subnets. Both devices are running OpenWRT and using the DSA format, and they have been working well for several months. SSID A is for general use, and SSID B is for IoT devices.
I want to add 1 more dumb AP, so there will be a total of 1 main router and 2 APs. Unfortunately, this second AP, the Airtight C-75, does not use the DSA format but instead uses the old Switch format.
Here are the default settings for the Airtight C-75 OpenWRT after a reset:
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 'xxx:yyy'
config interface 'wan'
option device 'eth0.1'
option proto 'dhcp'
config interface 'wan6'
option device 'eth0.1'
option proto 'dhcpv6'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth1.2'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '60'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '2 0t'
config switch_vlan
option device 'switch0'
option vlan '2'
option ports '3 6t'
Here are my settings:
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 'xxx:yyy'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0.10'
list ports 'eth1.20'
config interface 'lan'
option proto 'static'
option netmask '255.255.255.0'
option ip6assign '60'
option delegate '0'
option ipaddr '192.168.10.200'
option gateway '192.168.2.1'
list dns '192.168.2.1'
option device 'eth0.10'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option vid '10'
option description 'lan'
option ports '0t 2 3 6'
config switch_vlan
option device 'switch0'
option vlan '2'
option vid '20'
option description 'iot'
option ports '0t 2t 3t 6t'
config interface 'iot'
option proto 'static'
option ipaddr '192.168.20.200'
option netmask '255.255.255.0'
option gateway '192.168.2.1'
option delegate '0'
option type 'bridge'
list dns '192.168.2.1'
Would anyone be willing to provide assistance and corrections? I've been struggling for a few days to set up VLANs in the Switch format, it seems that Switch is more complex than DSA.
If possible, I would like to connect an ethernet cable to a PoE-supported WAN port.
Thank you very much in advance!