wlan.ini 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ;++++++++++++++++++++++++++++++++++
  2. ; AI on the edge - WLAN configuration
  3. ;++++++++++++++++++++++++++++++++++
  4. ; ssid: Name of WLAN network (mandatory), e.g. "WLAN-SSID"
  5. ; password: Password of WLAN network (mandatory), e.g. "PASSWORD"
  6. ssid = ""
  7. password = ""
  8. ;++++++++++++++++++++++++++++++++++
  9. ; hostname: Name of device in network, e.g "watermeter"
  10. ; This parameter can be configured via WebUI configuration
  11. ; Default: "watermeter", if nothing is configured
  12. ;hostname = "watermeter"
  13. ;++++++++++++++++++++++++++++++++++
  14. ; Fixed IP: If you like to use fixed IP instead of DHCP (default), the following
  15. ; parameters needs to be configured: ip, gateway, netmask are mandatory, dns optional
  16. ;ip = "xxx.xxx.xxx.xxx"
  17. ;gateway = "xxx.xxx.xxx.xxx"
  18. ;netmask = "xxx.xxx.xxx.xxx"
  19. ; DNS server (optional, if no DNS is configured, gateway address will be used)
  20. ;dns = "xxx.xxx.xxx.xxx"
  21. ;++++++++++++++++++++++++++++++++++
  22. ; WIFI Roaming:
  23. ; Network assisted roaming protocol is activated by default
  24. ; AP / mesh system needs to support roaming protocol 802.11k/v
  25. ;
  26. ; Optional feature (usually not neccessary):
  27. ; RSSI Threshold for client requested roaming query (RSSI < RSSIThreshold)
  28. ; Note: This parameter can be configured via WebUI configuration
  29. ; Default: 0 = Disable client requested roaming query
  30. RSSIThreshold = 0
  31. ;++++++++++++++++++++++++++++++++++
  32. ; Password Protection of the Web Interface and the REST API
  33. ; When those parameters are active, the Web Interface and the REST API are protected by a username and password.
  34. ; Note: This is be a WEAK and INSECURE way to protect the Web Interface and the REST API.
  35. ; There was no audit nor a security review to check the correct implementation of the protection!
  36. ; The password gets transmitted unencrypted (plain text), this means it is very easy to extract it
  37. ; for somebody who has access to your WIFI!
  38. ; USE AT YOUR OWN RISK!
  39. ;http_username = "myusername"
  40. ;http_password = "mypassword"