This article provides information on how to configure a Guest and Corporate Wireless client segment, which are connecting to the same AP.
To configure multiple wireless access levels to the same AP, It is good to connect to a separate SSID; which is distinguished by VLAN ID's. Here, You would have to make use of a Routed VLAN Interface (RVI), which would distinguish one wireless segment from the other. The following VLANs have to be created:
root@SRX240H# show interfaces vlan unit 1000 { family inet { address 10.252.1.10/24; } } unit 1001 { family inet { address 10.252.2.1/24; } } unit 1002 { family inet { address 10.252.3.1/24; } }
root@SRX240H# show vlans Wireless-mgnt { description Wireless-mgnt; vlan-id 5; l3-interface vlan.1002; } wifi-guest-1000 { vlan-id 1000; l3-interface vlan.1000; } wifi-corp-1001 { vlan-id 1001; l3-interface vlan.1001; }
root@SRX240H# show interfaces ge-0/0/4 { description AX411_INT; unit 0 { family ethernet-switching { port-mode trunk; vlan { members [ wifi-guest-1000 wifi-corp-1001 ]; } native-vlan-id 5; } } }
root@SRX240H# show wlan access-point ax411-ap description Office-WIFI; mac-address xx:xx:xx:xx:xx:xx; access-point-options { country { US; } } radio 2 { virtual-access-point 0 { description Guest-Users; ssid Guest; vlan 1000; security { none; } } } virtual-access-point 1 { description TestGuest; ssid Corp; vlan 1001; security { wpa-personal { wpa-version { both; } cipher-suites { tkip; } key "$ABC123"; ## SECRET-DATA } } } }
2020-02-27: minor non-technical edits.