Technical Tip: How to enable and disable broadcast of SSID
Description
Sometimes it may be required to disable the broadcast of the SSID of a wireless unit or to hide the SSID of the wireless in the FortiWiFi or the FortiAP which connects to the FortiGate unit.
Scope
Solution
edit <vap_name>
set broadcast-ssid {enable | disable}
next
end
For example:
In order to validate whether the SSID is in tunnel mode or bridge mode via CLI, run the show command under the SSID config level.
If the "set local-bridge enable" parameter is present, the SSID is in bridge mode:
FGT-1 (SSID-1) # show
set ssid "SSID-1"
set passphrase ENC [omitted]
set local-bridging enable <--- Bridge mode.
set schedule "always"
If this parameter is not present when running a regular show command, the SSID is in tunnel mode, as this parameter is disabled by default:
FGT-1 (SSID-2) # show
set passphrase ENC [omitted]
set schedule "always"
FGT-1 (SSID-2) # show full-configuration | grep local-bridging
set local-bridging disable <--- Tunnel mode.
The SSID Interface can be enabled/disabled from the FortiGate or FortiManager CLI using the following commands:
CLI commands to disable the SSID Interface:
config system interface
edit "SSID_NAME"
set status down
next
end
CLI commands to enable the SSID Interface:
config system interface
edit " SSID_NAME "
unset status
next
end
Disabling it will stop broadcasting the SSID. When the SSID is hidden, clients must be pre-configured and they will actively send probe requests looking specifically for that SSID.
- Roaming delays.
- Clients taking longer to connect.
- An increased number of probes and consequent airtime overhead.
- Excessive battery drain on the clients.
