Skip to content

Commit

Permalink
Add cookbook entry for hidden WiFi networks
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Feb 5, 2022
1 parent 5a64c45 commit 915fee0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,28 @@ Protected EAP (PEAP) is a common authentication protocol for enterprise WiFi net

TBD

### Hidden WiFi networks

If the access point has been configured to not advertise a network, VintageNetWiFi won't find it. It has to explicitly be told to search for
it. Add `scan_ssid: 1` to the configuration to do this. For example,

```elixir
%{
type: VintageNetWiFi,
vintage_net_wifi: %{
networks: [
%{
key_mgmt: :wpa_psk,
ssid: "my_network_ssid",
psk: "a_passphrase_or_psk",
scan_ssid: 1
}
]
},
ipv4: %{method: :dhcp},
}
```

### Access point WiFi

Some WiFi modules can be run in access point mode. This makes it possible to
Expand Down

0 comments on commit 915fee0

Please sign in to comment.