I'm having no luck getting WLAN to LAN traffic flowing on a TP-Link Archer C7 v5.
I have a router running as internet gateway/firewall with several VLANs.
I set up one wired access point on a Linksys WRT3200ACM which is working great - wired and wireless traffic.
I then tried to set up a TP-Link Archer C7 v5 to match. At this point the wired traffic is flowing as expected but the wireless isn't working at all.
I can connect wirelessly but I'm not getting assigned an IP and even if I assign one manually, nothing goes through. I can't even ping the router.
Here's my configuration (all 3 routers are on 23.05.4):
# ubus call system board
{
"kernel": "5.15.162",
"hostname": "ap-den",
"system": "Qualcomm Atheros QCA956X ver 1 rev 0",
"model": "TP-Link Archer C7 v5",
"board_name": "tplink,archer-c7-v5",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "23.05.4",
"revision": "r24012-d8dd03c46f",
"target": "ath79/generic",
"description": "OpenWrt 23.05.4 r24012-d8dd03c46f"
}
}
# 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 'REDACTED'
config interface 'lan'
option device 'eth0.1'
option proto 'static'
option ipaddr 'REDACTED'
option netmask '255.255.255.0'
option ip6assign '60'
option gateway 'REDACTED'
option type 'bridge'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '0t 1 3 4 5'
option vid '1'
# cat /etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option path 'pci0000:00/0000:00:00.0'
option channel '149'
option band '5g'
option htmode 'VHT80'
option cell_density '0'
option country 'US'
config wifi-iface 'wifinet10'
option device 'radio0'
option mode 'ap'
option ssid 'REDACTED'
option encryption 'psk2+ccmp'
option key 'REDACTED'
option ieee80211r '1'
option ft_over_ds '1'
option ft_psk_generate_local '1'
option network 'lan'
dnsmasq, firewall, and odhcpd are disabled (services provided by gateway router)