LEDE/OpenWRT — Hiding Your SSID

CT WiFi
LEDE/OpenWrt & IoT
Published in
2 min readNov 30, 2016

Setting your SSID/Network to hidden ensures that it is not viewable by standard devices. This might be handy if you set up a network for a specific device, and don’t need others to see it, or if you just want to make the network hidden to the average Joe.

It’s worth pointing out from the start however that making your SSID hidden does not make it invisible. There are still methods out there to sniff out and find hidden SSIDs. So while it can be used to boost privacy, relying on this as a security feature on it’s own is not a good idea.

That being said, this guide will walk you through how to easily hide your SSID.

SSH to your LEDE/OpenWRT device

If you are using Windows then start PuTTY and click Session on the left side, select SSH from the options, and then enter in the IP Address of your LEDE/OpenWRT box into the Host Name field.

Once you’ve done this just click on Open to start up the SSH connection.

PuTTY

If you are connecting via terminal, then just SSH to your LEDE/OpenWRT device using the following command, where 192.168.1.1 is your LEDE/OpenWRT device’s IP address.

ssh root@192.168.1.1

Configuration

First we need to access the wireless config file to make changes. So run the following command:

vi /etc/config/wireless

Once this is open, you will need to find the network you want to hide. This is relatively simple, just look for the SSID of your network.

config 'wifi-iface'
option 'device' 'wl0'
option 'network' 'lan'
option 'mode' 'ap'
option 'ssid' 'SneakyWiFi'
option 'encryption' 'psk2'
option 'key' 'sneakybeaky'

Above, we have found the interface for the SSID ‘SneakyWiFi’. We want to add/edit in the following:

option 'hidden' '1'

Setting this option to 1 hides the SSID, and switching to 0 unhides it.

Once you have done this, your config should look similar to the following:

config 'wifi-iface'
option 'device' 'wl0'
option 'network' 'lan'
option 'mode' 'ap'
option 'ssid' 'SneakyWiFi'
option 'encryption' 'psk2'
option 'key' 'sneakybeaky'
option 'hidden' '1'

Once you have made your changes you will need to reboot your device or restart the wireless.

To restart your wireless, run the following:

wifi down
wifi up

Or if you want to reboot the whole device, run this instead:

reboot

If you found this post helpful please let us know by clicking the ♥ below.

This blog was brought to you by Cucumber WiFi. Cucumber helps you run a more efficient WiFi network. Check it out here.

Cucumber WiFi — control any (WiFi) device from the cloud.

--

--

CT WiFi
LEDE/OpenWrt & IoT

An orchestration tool for WiFi devices — Manage your networks from a single-pane of glass.