Hi guys, I have a very weird issue regarding vlan
I have the following devices configured:
This is the relevant part of the /etc/config/network
config interface 'lan'
option proto 'static'
option ip6assign '60'
option _turris_mode 'managed'
list ipaddr '192.168.66.1/24'
option device 'br-lan.66'
option defaultroute '0'
config device 'br_lan'
option name 'br-lan'
option type 'bridge'
option ipv6 '0'
list ports 'lan0'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'
option promisc '1'
config bridge-vlan
option device 'br-lan'
option vlan '66'
list ports 'lan0:t'
list ports 'lan1:u*'
list ports 'lan2:u*'
config device
option vid '66'
option type '8021q'
option name 'br-lan.66'
option ifname 'br-lan'
option ipv6 '0'
option promisc '1'
This is the wifi config
config wifi-device 'radio0'
option type 'mac80211'
option path 'soc/soc:pcie/pci0000:00/0000:00:02.0/0000:02:00.0'
option country 'CH'
option cell_density '0'
option band '5g'
option htmode 'HE160'
option channel '36'
config wifi-device 'radio1'
option type 'mac80211'
option path 'soc/soc:pcie/pci0000:00/0000:00:03.0/0000:03:00.0'
option band '2g'
option country 'CH'
option cell_density '0'
option htmode 'HT40'
option channel '3'
config wifi-iface 'wifinet4'
option ssid 'House of Ping'
option encryption 'psk2'
option device 'radio0'
option mode 'ap'
option network 'lan'
option key '********'
option ft_over_ds '0'
option mobility_domain '6969'
option ft_psk_generate_local '1'
option ieee80211r '1'
config wifi-iface 'wifinet3'
option ssid 'House of Ping'
option encryption 'psk2'
option device 'radio1'
option mode 'ap'
option network 'lan'
option key '******'
option ft_over_ds '0'
option mobility_domain '6969'
option ft_psk_generate_local '1'
option ieee80211r '1'
I also have configured corresponding wifi networks. Now here comes the strange part, as long as my clients are connected to the wifi anything works like a charm, I can ping clients within the respective vlan e.g. my desktop is connect via wifi in the LAN gets the IP 192.168.66.54 and can ping my notebook which is also connected to the WIFI in the same LAN with the IP 192.168.66.55. (edited)
If I connect my Notebook directly on LAN port 1 which is untagged for LAN i successfully get an IP like 192.168.66.42. I can access the internet, no problemo. But I’m unable to ping or get pinged in the 192.168.66.1/24 subnet. I don’t get it, what did I miss? Any ideas? O btw. what is the option _turris_mode 'managed'
doing?