| 1234567891011121314151617181920212223242526272829303132333435363738 |
- ;++++++++++++++++++++++++++++++++++
- ; AI on the edge - WLAN configuration
- ;++++++++++++++++++++++++++++++++++
- ; ssid: Name of WLAN network (mandatory), e.g. "WLAN-SSID"
- ; password: Password of WLAN network (mandatory), e.g. "PASSWORD"
- ssid = ""
- password = ""
- ;++++++++++++++++++++++++++++++++++
- ; hostname: Name of device in network, e.g "watermeter"
- ; This parameter can be configured via WebUI configuration
- ; Default: "watermeter", if nothing is configured
- ;hostname = "watermeter"
- ;++++++++++++++++++++++++++++++++++
- ; Fixed IP: If you like to use fixed IP instead of DHCP (default), the following
- ; parameters needs to be configured: ip, gateway, netmask are mandatory, dns optional
- ;ip = "xxx.xxx.xxx.xxx"
- ;gateway = "xxx.xxx.xxx.xxx"
- ;netmask = "xxx.xxx.xxx.xxx"
- ; DNS server (optional, if no DNS is configured, gateway address will be used)
- ;dns = "xxx.xxx.xxx.xxx"
- ;++++++++++++++++++++++++++++++++++
- ; WIFI Roaming:
- ; Network assisted roaming protocol is activated by default
- ; AP / mesh system needs to support roaming protocol 802.11k/v
- ;
- ; Optional feature (usually not neccessary):
- ; RSSI Threshold for client requested roaming query (RSSI < RSSIThreshold)
- ; Note: This parameter can be configured via WebUI configuration
- ; Default: 0 = Disable client requested roaming query
- RSSIThreshold = 0
|