IPQ40xx target & Single NIC devices

Hi,

I'm curious, I want to use an aruba 303 that also have de Qualcomm IPQ4029 and has also good memory and flash. I want to use it with vlans, is this issue and Qualcomm IPQ4029 issue, or only in an MR33?

Its the same SoC, but you can use the DSA PR and have the working VLAN-s.
AP303 is already converted there

1 Like

Driver-level VLANs are working fine on my AP-303, which is running stable OpenWrt 21.02.x.
Neither swconfig nor DSA patches are required.

Good to hear.I hope to buy the aruba ap11and play with it the vlans , and does bluetooth also work?

ok, is the 303H also converted?

What do you mean wirth DSA PR? Is this another image?

I dont think that 303H was converted.

DSA PR is here:

I got issues with the vlans with the cpus en ehternetports and vlans . The devices has 2 cpu's and 4 ethernet ports. In openwrt eth0 on the fysical device (POE) is the wan port. So the wan port should be the normal lan port , but with the vlans I can't solve it. So I hoped that maybe this issue is resolved also with this?

I have this issue posted here

I don't really understand, but IPQ40xx only has one 1Gbit Full duplex CPU ethernet uplink, everything user-facing is just the switch interfaces.

I am just telling you that with DSA VLAN-s work fine even on multiport devices

ok. Is it possible to have the patch also for the 303h applied?

Sure, anybody can contribute to the conversion list

Hi,

I'm trying on my 303h the same, but de dhcp request doesn't work. Do you have an example with driver-level vlans?

here is the config I use. This works on my older aruba ap-105

root@OpenWrt:/etc/init.d# 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 'fd41:d718:0624::/48'

config device
	option name 'br-lan'
	option type 'bridge'
	list ports 'eth1'

config interface 'lan'
	option device 'br-lan'
	option proto 'static'
	option ipaddr '192.168.199.199'
	option netmask '255.255.255.0'
	option gateway '192.168.199.254'
	option ip6assign '60'
	list dns '192.168.180.254'
	option delegate '0'

config device
	option name 'br-vlan10'
	option type 'bridge'
	option ipv6 '0'
	list ports 'et1.10'

config interface 'vlan10'
	option proto 'none'
	option device 'br-vlan10'
	option delegate '0'

I cannot say anything about the 303h.
This is my config for the AP11/AP-303 (the model without 'h'):


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 'fdXX:XXXX:XXXX::/48'

config device
	option name 'eth0.1'
	option type '8021q'
	option macaddr 'XX:XX:XX:XX:XX:fe'
	option ifname 'eth0'
	option vid '1'

config device
	option name 'eth0.2'
	option type '8021q'
	option macaddr 'XX:XX:XX:XX:XX:ff'
	option ifname 'eth0'
	option vid '2'

config device
	option name 'br-lan'
	option type 'bridge'
	option macaddr 'XX:XX:XX:XX:XX:fe'
	list ports 'eth0.1'

config interface 'lan'
	option device 'br-lan'
	option proto 'static'
	option ipaddr 'ddd.ddd.ddd.ddd'
	option netmask '255.255.255.0'
	option ip6assign '60'

config interface 'wan'
	option device 'eth0.2'
	option proto 'dhcp'