Mahadi
(Mahadi)
October 14, 2019, 8:08am
1
Hope all of you are doing fine. I was trying to serve DHCP ip from my mikrotik router using cnPilot AP through multiple VLAN. I have no idea how to do it in cnPilot device. If any of you have any idea regarding this configuration, please help to overcome it.
Have a attached JPEG file which will show you how my network will be.
cireddy
(cireddy)
October 14, 2019, 8:18am
2
Hi, the attached diagram shows need for
1. 3 SSIDs says SSID 1 mapped to VALN 10 and SSID 2 mapped to VLAN 20 and SSID 3 mapped to VLAN 30
2. External DHCP server for all the SSIDs
2. Here is the flow for the same
1. Create 3 SSIDs separately
2. Map each ssid to VLAN separately
3. Configure trunk port on with allowed VLAN as 10,20 and 30 with native VLAN as 1
Please contact Cambium support they shall be able to help quickly
1 Like
cireddy
(cireddy)
October 14, 2019, 8:24am
3
here sample cli cnfg
wireless wlan 1
ssid vlan-10-ssid
no shutdown
vlan 10
security open
band both
dtim-interval 1
max-associated-client 127
mac-authentication policy deny
no guest-access
!
wireless wlan 2
ssid vlan-20-ssid
no shutdown
vlan 20
security open
band both
dtim-interval 1
max-associated-client 127
mac-authentication policy deny
no guest-access
!
wireless wlan 3
ssid vlan-30-ssid
no shutdown
vlan 30
security open
band both
dtim-interval 1
max-associated-client 127
mac-authentication policy deny
no guest-access
!
interface eth 1
switchport mode trunk
switchport trunk native vlan 1
switchport trunk allowed vlan 10,20,30
!
1 Like