Manual:VLANs on Wireless: Difference between revisions

From MikroTik Wiki
Jump to navigation Jump to search
No edit summary
(31 intermediate revisions by 4 users not shown)
Line 2: Line 2:




===Summary===
=Summary=


abc.
VLANs provide the possibility to isolate devices into different Layer2 segments while still using the same Layer1 medium. This is very useful in setups where you want to separate different types of devices of users. This feature is also very useful for Wireless setups since you can isolate different Virtual APs and restricting access to certain services or networks by using Firewall. Below is an example with a setup with two Access Points on the same device that and isolates them into saprate VLANs. This kind of scenario is very common when you have a '''Guest AP''' and '''Work AP'''.


===Example 1===
=Example=
[[File:vlan-wlan1.jpg|740px|center|alt=Alt text|Vlan forwarding over wireless interface]]


* R1
[https://wiki.mikrotik.com/wiki/Manual:Interface/Bridge#Bridge_VLAN_Filtering Bridge VLAN Filtering] since RouterOS v6.41 provides VLAN aware Layer2 forwarding and VLAN tag modifications within the bridge.
 
'''R1:'''
* Add necessary VLAN interfaces on ethernet interface to make it a VLAN trunk port. Add ip addresses on VLAN interfaces.


<pre>
<pre>
[admin@R1] >
/interface vlan
/interface vlan
add interface=ether1 name=vlan110 vlan-id=110
add interface=ether1 name=vlan111 vlan-id=111
add interface=ether1 name=vlan220 vlan-id=220
add interface=ether1 name=vlan222 vlan-id=222


/ip address
/ip address
add address=192.168.1.1/24 interface=vlan110 network=192.168.1.0
add address=192.168.1.1/24 interface=vlan111
add address=172.168.1.1/24 interface=vlan220 network=172.168.1.0
add address=192.168.2.1/24 interface=vlan222
</pre>
</pre>


* R2
'''R2:'''
* Add VirtualAP under wlan1 interface and create wireless security-profiles for wlan1 and wlan2


<pre>
<pre>
/interface vlan
[admin@R2] >
add interface=ether1 name=vlan110-ether1 vlan-id=110
/interface wireless
add interface=ether1 name=vlan220-ether1 vlan-id=220
set [ find default-name=wlan1 ] disabled=no mode=ap-bridge security-profile=vlan111 ssid=vlan111 vlan-id=111 vlan-mode=use-tag
add disabled=no master-interface=wlan1 name=wlan2 security-profile=vlan222 ssid=vlan222 vlan-id=222 vlan-mode=use-tag
</pre>
 
{{Note | It is important to set wlan1,wlan2 vlan-mode to "use-tag".}}


* Create bridge with ''vlan-filtering=yes''
* Add necessary bridge ports
* Add ''tagged'' interfaces under ''interface bridge vlan'' section with correct ''vland-ids''
<pre>
[admin@R2] >
/interface bridge
/interface bridge
add name=bridge-vlan110
add fast-forward=no name=bridge1 vlan-filtering=yes
add name=vlan220-bridge


/interface bridge port
/interface bridge port
add bridge=bridge-vlan110 interface=vlan110-ether1
add bridge=bridge1 interface=ether2
add bridge=bridge-vlan110 interface=wlan1
add bridge=bridge1 interface=wlan1
add bridge=vlan220-bridge interface=vlan220-ether1
add bridge=bridge1 interface=wlan2
add bridge=vlan220-bridge interface=wlan2
/interface bridge vlan
add bridge=bridge1 tagged=ether2,wlan1 vlan-ids=111
add bridge=bridge1 tagged=ether2,wlan2 vlan-ids=222
</pre>


/interface wireless security-profiles
{{ Warning | Some devices have a built-in switch chip that can switch packets between Ethernet ports with wire-speed performance. Bridge VLAN filtering disables hardware offloading (except on CRS3xx series switches), which will prevent packets from being switched, this does not affect Wireless interfaces as traffic through them cannot be offloaded to the switch chip either way. }}
set [ find default=yes ] supplicant-identity=MikroTik
add authentication-types=wpa2-psk eap-methods="" management-protection=allowed mode=dynamic-keys name=vlan110 supplicant-identity="" wpa2-pre-shared-key=passwordvlan110
add authentication-types=wpa2-psk eap-methods="" management-protection=allowed mode=dynamic-keys name=vlan220 supplicant-identity="" wpa2-pre-shared-key=passwordvlan220


interface wireless
{{ Note | VLAN filtering is not required in this setup, but is highly recommended due to security reasons. Without VLAN filtering it is possible to forward unknown VLAN IDs in certain scenarios. Disabling VLAN filtering does have performance benefits. }}
set [ find default-name=wlan1 ] disabled=no mode=ap-bridge security-profile=vlan110 ssid=vlan110 vlan-id=110 wireless-protocol=802.11
add disabled=no keepalive-frames=disabled mac-address=4E:5E:0C:78:CC:37 master-interface=wlan1 multicast-buffering=disabled name=wlan2 security-profile=vlan220 ssid=vlan220 vlan-id=220 wds-cost-range=0 wds-default-cost=0


</pre>
'''R3:'''
* Add IP address on wlan1 interface.
* Create wireless security-profile compatible with R2 wlan1.
<pre>
[admin@R3] >
/ip address
add address=192.168.1.3/24 interface=wlan1


* R3
<pre>
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
add authentication-types=wpa2-psk eap-methods="" management-protection=allowed mode=dynamic-keys name=vlan110 supplicant-identity="" wpa2-pre-shared-key=passwordvlan110
/interface wireless
/interface wireless
set [ find default-name=wlan1 ] disabled=no security-profile=vlan110 wireless-protocol=802.11
set [ find default-name=wlan1 ] disabled=no security-profile=vlan111
/ip dhcp-client
add default-route-distance=0 dhcp-options=hostname,clientid disabled=no interface=wlan1
</pre>
</pre>


* R4
'''R4:'''
* Add ip address on wlan1 interface.
* Create wireless security-profile compatible with R2 wlan2.
<pre>
[admin@R4] >
/ip address
add address=192.168.2.4/24 interface=wlan1


<pre>
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
add authentication-types=wpa2-psk eap-methods="" management-protection=allowed mode=dynamic-keys name=vlan220 supplicant-identity="" wpa2-pre-shared-key=passwordvlan220
/interface wireless
/interface wireless
set [ find default-name=wlan1 ] disabled=no security-profile=vlan220 wireless-protocol=802.11
set [ find default-name=wlan1 ] disabled=no security-profile=vlan222
/ip dhcp-client
add default-route-distance=0 dhcp-options=hostname,clientid disabled=no interface=wlan1
</pre>
</pre>


===Example 2===
[[Category:Bridging and switching]]
 
[[Category:Wireless]]
 
[[Category:Examples]]
{{cont}}
 
[[Category:Manual]]
[[Category:Interface|Switch Chip Features]]
[[Category:Case Studies|Switch Chip Features]]
[[Category:Routerboard|Switch Chip Features]]

Revision as of 09:32, 27 August 2020


Summary

VLANs provide the possibility to isolate devices into different Layer2 segments while still using the same Layer1 medium. This is very useful in setups where you want to separate different types of devices of users. This feature is also very useful for Wireless setups since you can isolate different Virtual APs and restricting access to certain services or networks by using Firewall. Below is an example with a setup with two Access Points on the same device that and isolates them into saprate VLANs. This kind of scenario is very common when you have a Guest AP and Work AP.

Example

Alt text

Bridge VLAN Filtering since RouterOS v6.41 provides VLAN aware Layer2 forwarding and VLAN tag modifications within the bridge.

R1:

  • Add necessary VLAN interfaces on ethernet interface to make it a VLAN trunk port. Add ip addresses on VLAN interfaces.
[admin@R1] >
/interface vlan
add interface=ether1 name=vlan111 vlan-id=111
add interface=ether1 name=vlan222 vlan-id=222

/ip address
add address=192.168.1.1/24 interface=vlan111
add address=192.168.2.1/24 interface=vlan222

R2:

  • Add VirtualAP under wlan1 interface and create wireless security-profiles for wlan1 and wlan2
[admin@R2] >
/interface wireless
set [ find default-name=wlan1 ] disabled=no mode=ap-bridge security-profile=vlan111 ssid=vlan111 vlan-id=111 vlan-mode=use-tag
add disabled=no master-interface=wlan1 name=wlan2 security-profile=vlan222 ssid=vlan222 vlan-id=222 vlan-mode=use-tag
Icon-note.png

Note: It is important to set wlan1,wlan2 vlan-mode to "use-tag".


  • Create bridge with vlan-filtering=yes
  • Add necessary bridge ports
  • Add tagged interfaces under interface bridge vlan section with correct vland-ids
[admin@R2] >
/interface bridge
add fast-forward=no name=bridge1 vlan-filtering=yes

/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=wlan1
add bridge=bridge1 interface=wlan2
/interface bridge vlan
add bridge=bridge1 tagged=ether2,wlan1 vlan-ids=111
add bridge=bridge1 tagged=ether2,wlan2 vlan-ids=222
Icon-warn.png

Warning: Some devices have a built-in switch chip that can switch packets between Ethernet ports with wire-speed performance. Bridge VLAN filtering disables hardware offloading (except on CRS3xx series switches), which will prevent packets from being switched, this does not affect Wireless interfaces as traffic through them cannot be offloaded to the switch chip either way.


Icon-note.png

Note: VLAN filtering is not required in this setup, but is highly recommended due to security reasons. Without VLAN filtering it is possible to forward unknown VLAN IDs in certain scenarios. Disabling VLAN filtering does have performance benefits.


R3:

  • Add IP address on wlan1 interface.
  • Create wireless security-profile compatible with R2 wlan1.
[admin@R3] >
/ip address
add address=192.168.1.3/24 interface=wlan1

/interface wireless
set [ find default-name=wlan1 ] disabled=no security-profile=vlan111

R4:

  • Add ip address on wlan1 interface.
  • Create wireless security-profile compatible with R2 wlan2.
[admin@R4] >
/ip address
add address=192.168.2.4/24 interface=wlan1

/interface wireless
set [ find default-name=wlan1 ] disabled=no security-profile=vlan222