Hi! I’m currently trying to set up my network as seen in the image. USER VLAN has the tag 11, IOT VLAN has the tag 13 and GUEST VLAN has the tag 14. These are tagged by an Omada AP and Omada Switch on individual ports.
So far I have:
-
Assigned igc1 (LAN) and igc2 (Wifi) and enabled them (no IP configured).
-
Created a Bridge between igc1 and igc2 so they are in the same subnet, which I think of as some sort of management subnet.
-
Configured a static IP (192.168.10.1/24) on this Bridge and enabled DHCP. All devices are reachable here and it is also possible to reach the internet from the Omada devices.
-
Created VLANs vlan01.11, vlan01.13, vlan01.14 with their parent being igc1 (Omada Switch).
-
Created VLANs vlan02.11, vlan02.13, vlan02.14 with their parent being igc2 (Omada AP)
-
Assigned all of them and enabled them (no IP configured)
-
Created a Bridge between each pair (vlan01.11 + vlan02.11 etc.)
Now my problem is that seemingly no matter what I do some devices on the VLANs cannot reach the internet because they cannot reach their Gateway.
I tried:
- Configuring a static IP to the VLAN Bridge (192.168.11.1 for USER VLAN) and enabling DHCP on it with the correct subnet. Doing so not a single device was able to reach the Gateway, but they were able to talk to each other. DHCP worked this way for both endpoints.
- Instead of configuring a static IP to the VLAN Bridge I configured it right on the vlan02.11 interface and enabled DHCP there. Doing so only the devices on the wifi are able to reach the Gateway but the devices connected via the Switch cannot. In addition DHCP does also not work for devices on the Switch.
Does anyone here maybe have a hint on what I am doing wrong?
Edit: I also tried:
- Combinations of net.link.bridge.pfil_member and net.link.bridge.pfil_bridge but that didnt work either.
- Removing the bridge and using only the vlans but with the same subnet
There is something I don’t fully grasp.
The vlan separation is because you want a total isolation between the vlans (including different subnets) or just you want an isolation to the ap/switch level?
Depends of what you want the configuration is different and the config you posted seems to be mixed to me
Mainly I want to have separate USER, IOT and GUEST VLANs. So for example I don’t want guests to be able to access IoT devices.
The AP and Switch tag these VLANs based on SSID and Port a device is connected to, so OPNsense receives tagged traffic that I can put rules on. I could probably just connect the AP to the Switch and be fine, but the Switch is 1Gb and the AP has a 2.5Gb port so I would like to keep both the switch and the AP connected to OPNsense directly.
Having the switch and AP on their own subnet is not really a requirement, but I guess it would be nice to also be able to control who can access their webinterfaces.
So really I just want to have:
Does that make it more clear?
Yes, thanks
The setup seems possible with the exception of all of them under the same subnet. I really discourage it because I am not sure how opnsense and the DHCP sever will work with firewall rules based on ports and not subnetworks. If you accept this deviations what you need to do is:
As. Summary the steps should be
Briged port -> vlan ether ports -> interface definition -> ipv4 + dhcp configuration -> firewall definition.
For ipv6 it is almost the same
Hmm I think I this does not work in case you meant to put the bridge as the parent of the VLANs, OPNsense does not allow this:
However I think I found another solution that works exactly as I want but it is very weird so be warned:
vlan01.11
andvlan02.11
onigc1
andigc2
respectively, assigned them, enabled them and gave each a static ipv4 (192.168.11.1
and192.168.11.2
)subnet=192.168.11.1/24
and a pool of192.168.11.21-192.168.11.254
, uncheck “Match Client-id” and “Auto collect option data” and set Routers, DNS and NTP Servers to192.168.11.1
and192.168.11.2
This way KEA will give out IP addresses on all interfaces with a static IP in the defined subnet. Make sure to disable ISC DHCP as it otherwise caused issues with KEA and somehow also Unbound (I also enabled “Register ISC DHCP4 Leases” in Unbounds settings because I had weird issues with SERVFAIL there).
I repeated this process for the
vlan0x.13
andvlan0x.14
. Now internet access works on all VLAN interfaces, aswell as the normal interfaces and I can still define Rules for each VLAN.What I don’t get about this is why I cannot assign or enable the bridge interface… but I guess it works soo I’m happy. Thank you for your suggestion though!
Congrats if it is working, as far as I know when you do a bridging you shouldn’t have an ip, because both ports are seen as a same Mac interface…
Something is not working as I think it should. But if it is working nothing else to discuss