Cisco SSID broadcast: различия между версиями
Sirmax (обсуждение | вклад) |
Sirmax (обсуждение | вклад) |
||
Строка 3: | Строка 3: | ||
=Broadcasting Multiple SSIDs= |
=Broadcasting Multiple SSIDs= |
||
Заметка что бы не забыть |
Заметка что бы не забыть |
||
− | * источник http://slaptijack.com/networking/cisco-broadcasting-multiple-ssids/ |
+ | * источник http://slaptijack.com/networking/cisco-broadcasting-multiple-ssids/ (by Scott Hebert) |
+ | |||
⚫ | |||
+ | |||
− | by Scott Hebert |
||
Businessman Configuring Multiple Wireless SSIDsBy default, service set identifiers (SSIDs) configured on a Cisco integrated services router are not broadcast. This means that if you want to configure a client to use the wireless network, you'll have to manually enter the SSID in the client configuration. This isn't a bad thing, but it is a tad inconvenient. |
Businessman Configuring Multiple Wireless SSIDsBy default, service set identifiers (SSIDs) configured on a Cisco integrated services router are not broadcast. This means that if you want to configure a client to use the wireless network, you'll have to manually enter the SSID in the client configuration. This isn't a bad thing, but it is a tad inconvenient. |
||
Строка 13: | Строка 13: | ||
In order to broadcast the SSID, you need to add the guest-mode command to the SSID configuration. For example: |
In order to broadcast the SSID, you need to add the guest-mode command to the SSID configuration. For example: |
||
⚫ | |||
dot11 ssid EXAMPLESSID1 |
dot11 ssid EXAMPLESSID1 |
||
vlan 9 |
vlan 9 |
||
Строка 28: | Строка 29: | ||
encapsulation dot1Q 9 |
encapsulation dot1Q 9 |
||
! |
! |
||
+ | </PRE> |
||
If you try to add another guest-mode SSID to the radio interface, you'll get the following error: |
If you try to add another guest-mode SSID to the radio interface, you'll get the following error: |
||
+ | <PRE> |
||
− | |||
Dot11Radio1: Guest-ssid already existing on ssid EXAMPLESSID1 |
Dot11Radio1: Guest-ssid already existing on ssid EXAMPLESSID1 |
||
+ | </PRE> |
||
So, what needs to be done? |
So, what needs to be done? |
||
Строка 36: | Строка 39: | ||
Here's an example configuration. |
Here's an example configuration. |
||
+ | <PRE> |
||
− | |||
dot11 ssid EXAMPLESSID1 |
dot11 ssid EXAMPLESSID1 |
||
vlan 9 |
vlan 9 |
||
Строка 63: | Строка 66: | ||
encapsulation dot1Q 99 |
encapsulation dot1Q 99 |
||
! |
! |
||
+ | </PRE> |
||
Obviously, this configuration isn't enough to get our wireless working, but it shows the basics of getting multiple SSIDs to broadcast in guest mode. |
Obviously, this configuration isn't enough to get our wireless working, but it shows the basics of getting multiple SSIDs to broadcast in guest mode. |
||
Версия 17:36, 28 августа 2022
Broadcasting Multiple SSIDs
Заметка что бы не забыть
- источник http://slaptijack.com/networking/cisco-broadcasting-multiple-ssids/ (by Scott Hebert)
Businessman Configuring Multiple Wireless SSIDsBy default, service set identifiers (SSIDs) configured on a Cisco integrated services router are not broadcast. This means that if you want to configure a client to use the wireless network, you'll have to manually enter the SSID in the client configuration. This isn't a bad thing, but it is a tad inconvenient.
A quick note: there is no security benefit to not broadcasting the SSID. Whenever a client connects to the "hidden" network, the SSID is sent in cleartext and is easily captured.
In order to broadcast the SSID, you need to add the guest-mode command to the SSID configuration. For example:
dot11 ssid EXAMPLESSID1 vlan 9 authentication open guest-mode ! interface Dot11Radio1 no ip address ! ssid EXAMPLESSID1 ! station-role root ! interface Dot11Radio1.9 encapsulation dot1Q 9 !
If you try to add another guest-mode SSID to the radio interface, you'll get the following error:
Dot11Radio1: Guest-ssid already existing on ssid EXAMPLESSID1
So, what needs to be done?
The key to multiple broadcast SSIDs is in the mbssid command. Simply change the guest-mode command to mbssid guest-mode and add mbssid to the interface configuration.
Here's an example configuration.
dot11 ssid EXAMPLESSID1 vlan 9 authentication open mbssid guest-mode ! dot11 ssid EXAMPLESSID2 vlan 99 authentication open mbssid guest-mode ! interface Dot11Radio1 no ip address ! ssid EXAMPLESSID1 ! ssid EXAMPLESSID2 ! mbssid station-role root ! interface Dot11Radio1.9 encapsulation dot1Q 9 ! interface Dot11Radio1.99 encapsulation dot1Q 99 !
Obviously, this configuration isn't enough to get our wireless working, but it shows the basics of getting multiple SSIDs to broadcast in guest mode.