How does VLAN tagging work when the AP is connected to a single subnet

access-pointnetworkingvlan

I've got a wireless access point (TP Link TL-WA801ND). The AP has a Multi-SSID mode where the AP will broadcast multiple SSIDs, and optionally VLAN tag the traffic on each of the wireless networks.

The LAN section for that same AP has a single section for setting up IP address and gateway.

If I enable Multi-SSID mode, traffic will then be tagged for a VLAN. However, it appears to me that all traffic still will travel on the same subnet – the one I set up in the LAN section. I can't really get my head around how VLAN separation takes place here.

Even though all traffic from the AP is VLAN tagged, how will this work when – apparently – all traffic still travels on the same subnet?

I do know that I need a switch which supports VLAN tagging, but still – does this change the fact that all traffic apparently will travel on the same subnet?

enter image description here

enter image description here

Best Answer

From the manual I found this:

"VLAN ID (1-4) - Provide a number between 1 and 4095 for VLAN. This will cause the device to send packets with VLAN tags. The switch connecting with the device must support VLAN IEEE802.1Q frames. The wireless stations connecting to the SSID of a specified VLAN ID can communicate with the PC connecting to the port with the same VLAN ID on the Switch."

In your example above you do use the default vlan (see "VLAN ID: 1"), which is always untagged by definition on how VLAN works.

Besides needing to have switch that supports 802.1Q you will also need a router that supports 802.1Q, since the idea is that you have a trunk link between access point and switch (and also a trunk link between router and switch).

What you are aiming for is having a dedicated subnet per VLAN ID.

Like VLAN ID 1 resides on 192.168.1.0/24 and VLAN ID 2 resides on 192.168.2.0/24 or whatever IP address scheme you might use.