Hi! Could I have a hand setting up OpenWrt on my Velop? I'm quite new to the world of real networks, and I've having trouble achieving what I want. I have RTFM'd and followed examples, but I can't quite get it working.
System is a Velop WHW03v2, running the latest available v24.10.4. Upstream is a Netgear GS108E feeding to OpnSense.
So... the Velop has 3 radios, and I'd one radio to be untagged, and each of the other radios on a different VLAN, like so :
phy1-ap0 -> VLAN.20 ------+
v
phy0-ap0 -----------------> bridge -> lan -> switch -> opnsense
^
phy2-ap0 -v |
VLAN.30 --------+
wan ------^
with all DNS/DHCP/firewalling done by OpnSense (this part I've done. Yay me!)
Here's /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 'fd17:919a:e01c::/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 '192.168.1.2'
option netmask '255.255.255.0'
option ip6assign '60'
list dns '192.168.1.1'
option gateway '192.168.1.1'
and /etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option path 'soc/40000000.pci/pci0000:00/0000:00:00.0/0000:01:00.0'
option band '5g'
option channel 'auto'
option htmode 'VHT40'
option country 'GB'
option cell_density '0'
config wifi-iface 'default_radio0'
option device 'radio0'
option mode 'ap'
option encryption 'sae-mixed'
option ocv '0'
config wifi-device 'radio1'
option type 'mac80211'
option path 'platform/soc/a000000.wifi'
option band '2g'
option channel 'auto'
option htmode 'HT40'
option country 'GB'
option cell_density '0'
config wifi-iface 'default_radio1'
option device 'radio1'
option mode 'ap'
option encryption 'sae-mixed'
option ocv '0'
config wifi-device 'radio2'
option type 'mac80211'
option path 'platform/soc/a800000.wifi'
option band '5g'
option channel '36'
option htmode 'VHT40'
option cell_density '0'
option country 'GB'
config wifi-iface 'default_radio2'
option device 'radio2'
option network 'lan'
option mode 'ap'
option encryption 'sae-mixed'
option ocv '0'
At this stage, I'd be happy to get the top two paths (phy1-ap0 on the VLAN, and phy-ap0 untagged) working. phy2-ap0 and wan I can leave till later and figure out from example.
LuCI preferred since that removes most footguns, but I'm not afraid of the shell.
Many thanks for any assistance!
