Hi psherman,
The output on the WAX206, which is essentially the default is:
root@OpenWrt-WAX206:~# ubus call system board
{
"kernel": "5.15.150",
"hostname": "OpenWrt-WAX206",
"system": "ARMv8 Processor rev 4",
"model": "Netgear WAX206",
"board_name": "netgear,wax206",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "23.05.3",
"revision": "r23809-234f1a2efa",
"target": "mediatek/mt7622",
"description": "OpenWrt 23.05.3 r23809-234f1a2efa"
}
}
root@OpenWrt-WAX206:~# 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 'fd68:76e0:838c::/48'
config device
option name 'br-lan'
option type 'bridge'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.6'
option netmask '255.255.255.0'
option ip6assign '60'
option gateway '192.168.1.1'
list dns '192.168.1.1'
config interface 'wan'
option device 'wan'
option proto 'dhcp'
config interface 'wan6'
option device 'wan'
option proto 'dhcpv6'
On the AX23 which is working how I would like to get the WAX206 working, is:
root@OpenWrt-AX23:~# ubus call system board
{
"kernel": "5.15.137",
"hostname": "OpenWrt-AX23",
"system": "MediaTek MT7621 ver:1 eco:3",
"model": "TP-Link Archer AX23 v1",
"board_name": "tplink,archer-ax23-v1",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "23.05.2",
"revision": "r23630-842932a63d",
"target": "ramips/mt7621",
"description": "OpenWrt 23.05.2 r23630-842932a63d"
}
}
root@OpenWrt-AX23:~# 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 'fd03:d160:1bbf::/48'
option packet_steering '1'
config device
option name 'br-lan'
option type 'bridge'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'
config interface 'lan'
option device 'br-lan.1'
option proto 'static'
option ipaddr '192.168.1.3'
option netmask '255.255.255.0'
option ip6assign '60'
option gateway '192.168.1.1'
list dns '192.168.1.1'
config interface 'wan'
option device 'wan'
option proto 'dhcp'
config interface 'wan6'
option device 'wan'
option proto 'dhcpv6'
config bridge-vlan
option device 'br-lan'
option vlan '1'
list ports 'lan1:u*'
list ports 'lan2:u*'
list ports 'lan3:u*'
list ports 'lan4:u*'
config bridge-vlan
option device 'br-lan'
option vlan '10'
list ports 'lan1:t'
config interface 'IOT'
option proto 'static'
option device 'br-lan.10'
option ipaddr '192.168.10.3'
option netmask '255.255.255.0'
option gateway '192.168.10.1'
list dns '192.168.10.1'
config bridge-vlan
option device 'br-lan'
option vlan '20'
list ports 'lan1:t'
config interface 'Kids20'
option proto 'static'
option device 'br-lan.20'
option ipaddr '192.168.20.3'
option netmask '255.255.255.0'
option gateway '192.168.20.1'
list dns '192.168.20.1'
Even though I try to replicate the same config via Luci or even copying the same kind of structure of the config files, I can't seem to get it to work.
My desire is to have lan1 as the main trunk to the gateway which provides DNS, DHCP etc on 192.168.1.1, and then all the local lan ports on the WAX206 to just be on the same lan, 192.168.1.1. I wanted to create the vlans which would only be associated with wifi networks so I can segregate the IOT devices (192.168.10.X), and then muck around with content filtering and safe search on the kids wifi network (192.168.20.X).
Thanks for your help.
(edit to add info requested)