private-wlan.rst 1022 B

12345678910111213141516171819202122232425262728
  1. Private WLAN
  2. ============
  3. It is possible to set up a private WLAN that bridges the WAN port and is seperated from the mesh network.
  4. Please note that you should not enable ``mesh_on_wan`` simultaneously.
  5. The private WLAN can be enabled through the config mode if the package ``gluon-web-private-wifi`` is installed.
  6. You may also enable a private WLAN using the command line::
  7. uci set wireless.wan_radio0=wifi-iface
  8. uci set wireless.wan_radio0.device=radio0
  9. uci set wireless.wan_radio0.network=wan
  10. uci set wireless.wan_radio0.mode=ap
  11. uci set wireless.wan_radio0.encryption=psk2
  12. uci set wireless.wan_radio0.ssid="$SSID"
  13. uci set wireless.wan_radio0.key="$KEY"
  14. uci set wireless.wan_radio0.disabled=0
  15. uci commit
  16. wifi
  17. Please replace ``$SSID`` by the name of the WLAN and ``$KEY`` by your passphrase (8-63 characters).
  18. If you have two radios (e.g. 2.4 and 5 GHz) you need to do this for radio0 and radio1.
  19. It may also be disabled by running::
  20. uci set wireless.wan_radio0.disabled=1
  21. uci commit
  22. wifi