GW ESP32 WiFi Hotspot

The Gateway provides a WiFi hotspot for configuration. The hotspot has SSID with the name "Configure Ruuvi Gateway ABCD" where ABCD is the last 2 bytes of the gateway WiFi MAC address. No password is required to connect to the gateway's hotspot.

The WiFi hotspot is only active if the gateway is not configured or within one minute after pressing the Configuration button. After the configuration of the gateway is complete, WiFi credentials are stored to flash and the hotspot is turned off. If the Internet connection is lost later, connection loss is indicated by "Red LED" but the hotspot is not turned back on unless the user enters configuration mode by pressing the Configuration button.

The gateway can be partially reconfigured over LAN (network configuration can't be changed in this case). Also following pages are available through LAN connection: /metrics and /history.

If Ethernet cable is connected to an unconfigured gateway, then after one minute the gateway will automatically be set to the default configuration with Ethernet connection mode and the Wi-Fi hotspot will be deactivated. After that, the user can activate the hotspot with a short press on the "Configure" button or reset the configuration with a long press on the "Configure" button.

API

The gateway is reachable at http://10.10.0.1 once a client has connected to the hotspot.

Encrypted data format

Sensitive data (containing passwords) is transmitted in encrypted form. The format for transmitting encrypted data is as follows (JSON):

Attribute nameDescription

encrypted

Encrypted data, encoded as Base64

iv

AES-256 initialization vector, encoded as Base64

hash

SHA-256 hash of unencrypted data, encoded as Base64

Example of encrypted data:

{"encrypted":"hbLi8K0CHELrvI0/4gO7n3E5KY5wtbmUSwM67oY6ZhzZNPIGBhHLE8CYeDuVL+FiU/K5vAO1EC+uEm/gw4LkaSE1sZbsGUGyDFelnEOlhQYQf6rGxlQYu+9xrzPhUv97tezkrPPesSy0tgea3QAmuQRPX628X0AP0OxUxE4kBh8guYKIXPYOf9EH0fUskvt/98B8p630mu66miiQfsONsxFWVX7GcUN5u1soYKdZXd9HQGVACEgl6oZ2Vxqf4JmtNgdsmWxYTmIOi1ySq4DtqtL5vfdzN1BMep0cHkgGAeMBQt6i9H5mhBZ8PnJzjvFcuolwsRG3rQTX9wRCXikjag==","iv":"I+CylR3OlmEWr127RC084w==","hash":"ADUJpequznSV9HyqkMLrj2NPhViJQa6YDdbkEDExajk="}

The data is encrypted using AES-256-CBC. ECDH protocol is used to establish a shared secret between the client and the Gateway, then SHA-256 hash is calculated for the shared secret to generate AES encryption key.

To establish a shared secret, the client must perform GET /ruuvi.json request and pass its public encryption key in the HTTP header "ruuvi_ecdh_pub_key" (Base64 encoded):

GET /ruuvi.json?_=1661226324528 HTTP/1.1
Host: 10.10.0.1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0
Accept: application/json, text/javascript, */*; q=0.01
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
ruuvi_ecdh_pub_key: BPtMzls7i0PyOu75EPzw2OaTJscwGnrnOW7mK58pfJ6Egg9/tV5cJFVz6euHGp7x4ZXj5s0hTiotrtE0qJLczMA=
X-Requested-With: XMLHttpRequest
Connection: keep-alive
Referer: http://10.10.0.1/

In response, the Gateway returns its public encryption key in the HTTP header "ruuvi_ecdh_pub_key" (Base64 encoded):

HTTP/1.1 200 OK
Server: Ruuvi Gateway
Date: Tue, 23 Aug 2022 03:45:27 GMT
Content-type: application/json; charset=utf-8
Content-Length: 1514
ruuvi_ecdh_pub_key: BGJXeeiqH7JPCdO3wRZgSdrcJb2EtSAVUQwr/RfeJmGxIrXuw8mTW2517RCn8pgfBwDnRWCnL9JYdvQkbf+goZQ=
Cache-Control: no-store, no-cache, must-revalidate, max-age=0
Pragma: no-cache

The client needs to compute a shared secret using its private encryption key and the Gateway's public key, then calculate SHA-256 for the shared secret to get the AES encryption key (AES_K).

To encrypt the data before sending it, the client must randomly generate a 16-byte initialization vector (IV) for AES encryption, then encrypt the data using parameters IV and AES_K. The data is validated using a SHA-256 hash, which is passed as part of JSON. All values in JSON are encoded by Base64.

To decrypt the data received from the Gateway, the client needs to decode all values in JSON from Base64 encoding, then get the IV from the "iv" attribute of the received JSON. After that, decrypt the data in the "encrypted" attribute using the IV and AES_K. And finally, calculate the SHA-256 hash for the decrypted data and check if it matches the "hash" attribute in JSON.

These API calls are available:

Requesting gateway configuration and performing encryption keys exchange

GET http://10.10.0.1/ruuvi.json

Headers

NameTypeDescription

ruuvi_ecdh_pub_key*

String

The client's public encryption key in Base64 encoding.

The Gateway's public encryption key is passed in HTTP header "ruuvi_ecdh_pub_key" in Base64 encoding. The data is sent in an encrypted form (see The Gateway's public encryption key is passed in HTTP header "ruuvi_ecdh_pub_key" in Base64 encoding. The data is sent in an encrypted form (see ). Here is unencrypted data:{ "fw_ver": "v1.12.2", "nrf52_fw_ver": "v0.7.2", "gw_mac": "C8:25:2D:8E:9C:2C", "wifi_sta_config": { "ssid": "" }, "wifi_ap_config": { "channel": 1 }, "use_eth": true, "eth_dhcp": true, "eth_static_ip": "", "eth_netmask": "", "eth_gw": "", "eth_dns1": "", "eth_dns2": "", "remote_cfg_use": false, "remote_cfg_url": "", "remote_cfg_auth_type": "no", "remote_cfg_refresh_interval_minutes": 0, "use_http": true, "http_url": "https://network.ruuvi.com/record", "http_user": "", "use_http_stat": true, "http_stat_url": "https://network.ruuvi.com/status", "http_stat_user": "", "use_mqtt": false, "mqtt_transport": "TCP", "mqtt_server": "test.mosquitto.org", "mqtt_port": 1883, "mqtt_prefix": "ruuvi/C8:25:2D:8E:9C:2C/", "mqtt_client_id": "C8:25:2D:8E:9C:2C", "mqtt_user": "", "lan_auth_type": "lan_auth_default", "lan_auth_user": "Admin", "lan_auth_api_key_use": false, "auto_update_cycle": "regular", "auto_update_weekdays_bitmask": 127, "auto_update_interval_from": 0, "auto_update_interval_to": 24, "auto_update_tz_offset_hours": 3, "ntp_use": true, "ntp_use_dhcp": false, "ntp_server1": "time.google.com", "ntp_server2": "time.cloudflare.com", "ntp_server3": "time.nist.gov", "ntp_server4": "pool.ntp.org", "company_id": 1177, "company_use_filtering": true, "scan_coded_phy": false, "scan_1mbit_phy": true, "scan_extended_payload": true, "scan_channel_37": true, "scan_channel_38": true, "scan_channel_39": true, "coordinates": ""}).

Here is unencrypted data:

{
        "fw_ver":       "v1.12.2",
        "nrf52_fw_ver": "v0.7.2",
        "gw_mac":       "C8:25:2D:8E:9C:2C",
        "wifi_sta_config":      {
                "ssid": ""
        },
        "wifi_ap_config":       {
                "channel":      1
        },
        "use_eth":      true,
        "eth_dhcp":     true,
        "eth_static_ip":        "",
        "eth_netmask":  "",
        "eth_gw":       "",
        "eth_dns1":     "",
        "eth_dns2":     "",
        "remote_cfg_use":       false,
        "remote_cfg_url":       "",
        "remote_cfg_auth_type": "no",
        "remote_cfg_refresh_interval_minutes":  0,
        "use_http":     true,
        "http_url":     "https://network.ruuvi.com/record",
        "http_user":    "",
        "use_http_stat":        true,
        "http_stat_url":        "https://network.ruuvi.com/status",
        "http_stat_user":       "",
        "use_mqtt":     false,
        "mqtt_transport":       "TCP",
        "mqtt_server":  "test.mosquitto.org",
        "mqtt_port":    1883,
        "mqtt_prefix":  "ruuvi/C8:25:2D:8E:9C:2C/",
        "mqtt_client_id":       "C8:25:2D:8E:9C:2C",
        "mqtt_user":    "",
        "lan_auth_type":        "lan_auth_default",
        "lan_auth_user":        "Admin",
        "lan_auth_api_key_use": false,
        "auto_update_cycle":    "regular",
        "auto_update_weekdays_bitmask": 127,
        "auto_update_interval_from":    0,
        "auto_update_interval_to":      24,
        "auto_update_tz_offset_hours":  3,
        "ntp_use":      true,
        "ntp_use_dhcp": false,
        "ntp_server1":  "time.google.com",
        "ntp_server2":  "time.cloudflare.com",
        "ntp_server3":  "time.nist.gov",
        "ntp_server4":  "pool.ntp.org",
        "company_id":   1177,
        "company_use_filtering":        true,
        "scan_coded_phy":       false,
        "scan_1mbit_phy":       true,
        "scan_extended_payload":        true,
        "scan_channel_37":      true,
        "scan_channel_38":      true,
        "scan_channel_39":      true,
        "coordinates":  ""
}

Save network configuration

POST http://10.10.0.1/ruuvi.json

The same endpoint "/ruuvi.json" is used for saving the network configuration and gateway configuration. If the passed JSON data contains the "use_eth" attribute, then the network part of the configuration will be updated. Otherwise, the gateway configuration will be set.

The data must be sent in an encrypted form (see Encrypted data format). Here is the unencrypted data:

Request Body

NameTypeDescription

use_eth*

Bool

Use Ethernet if True, otherwise use Wi-Fi

eth_dhcp

Bool

Use DHCP for Ethernet connection

eth_static_ip

String

Static IP address (when Ethernet is used and DHCP disabled)

eth_netmask

String

Netmask (when Ethernet is used and DHCP disabled)

eth_gw

String

IP address of gateway (when Ethernet is used and DHCP disabled)

eth_dns1

String

IP address of DNS1 (when Ethernet is used and DHCP disabled)

eth_dns2

String

IP address of DNS2 (when Ethernet is used and DHCP disabled)

wifi_ap_config

Object

Set parameters for Wi-Fi AP. The attribute "channel" allows configuring the Wi-Fi channel.

{
    // Response
}

Example:

{"use_eth":true,"eth_dhcp":true}

Example:

{"use_eth":false,"wifi_ap_config":{"channel":11}}

Save gateway configuration

POST http://10.10.0.1/ruuvi.json

The same endpoint "/ruuvi.json" is used for saving the network configuration and gateway configuration. If the passed JSON data contains the "use_eth" attribute, then the network part of the configuration will be updated. Otherwise, the gateway configuration will be set.

The data must be sent in an encrypted form (see Encrypted data format). Here is the unencrypted data:

Request Body

NameTypeDescription

remote_cfg_use

Bool

If true, then download the configuration from the remote server, specified in "remote_cfg_url"

remote_cfg_url

String

URL of the remote server to download the configuration

remote_cfg_auth_type

String

Authentication type: "no", "basic" or "bearer"

use_http

Bool

If true, then send data to the cloud via HTTP(S)

http_url

String

URL of the cloud server

http_user

String

Username

http_pass

String

Password

use_http_stat

Bool

If true, then send statistics to the cloud via HTTP(S)

http_stat_url

String

URL of the cloud statistrics server

http_stat_user

String

Username

http_stat_pass

String

Password

use_mqtt

Bool

If true, then send data to the cloud via MQTT(S)

mqtt_transport

String

MQTT transport: "TCP", "SSL", "WS" or "WSS"

mqtt_server

String

IP address of MQTT server

mqtt_port

Int

TCP/IP port of MQTT server

mqtt_prefix

String

MQTT prefix

mqtt_client_id

String

MQTT client ID

mqtt_user

String

Username for MQTT authentication

mqtt_pass

String

Password for MQTT authentication

lan_auth_api_key

String

Bearer key for authentication when accessing the Gateway from LAN

company_use_filtering

Bool

scan_coded_phy

Bool

scan_1mbit_phy

Bool

scan_extended_payload

Bool

scan_channel_37

Bool

scan_channel_38

Bool

scan_channel_39

Bool

auto_update_cycle

String

"regular", "beta" or "manual"

auto_update_weekdays_bitmask

Int

auto_update_interval_from

Int

auto_update_interval_to

Int

auto_update_tz_offset_hours

Int

ntp_use

Bool

ntp_use_dhcp

Bool

ntp_server1

String

ntp_server2

String

ntp_server3

String

ntp_server4

String

remote_cfg_auth_basic_user

String

Username for "basic" authentication

remote_cfg_auth_basic_pass

String

Password for "basic" authentication

remote_cfg_auth_bearer_token

String

Bearer token for bearer authentication

{
    // Response
}

Example:

{
  "remote_cfg_use":false,
  "remote_cfg_url":"",
  "remote_cfg_auth_type":"no",
  "use_http":true,
  "http_url":"https://network.ruuvi.com/record",
  "http_user":"",
  "http_pass":"",
  "use_http_stat":true,
  "http_stat_url":"https://network.ruuvi.com/status",
  "http_stat_user":"",
  "http_stat_pass":"",
  "use_mqtt":false,
  "mqtt_transport":"TCP",
  "mqtt_server":"test.mosquitto.org",
  "mqtt_port":1883,
  "mqtt_prefix":"ruuvi/C8:25:2D:8E:9C:2C/",
  "mqtt_client_id":"C8:25:2D:8E:9C:2C",
  "mqtt_user":"",
  "mqtt_pass":"",
  "lan_auth_api_key":"",
  "company_use_filtering":true,
  "scan_coded_phy":false,
  "scan_1mbit_phy":true,
  "scan_extended_payload":true,
  "scan_channel_37":true,
  "scan_channel_38":true,
  "scan_channel_39":true,
  "auto_update_cycle":"manual",
  "auto_update_weekdays_bitmask":127,
  "auto_update_interval_from":0,
  "auto_update_interval_to":24,
  "auto_update_tz_offset_hours":3,
  "ntp_use":true,
  "ntp_use_dhcp":false,
  "ntp_server1":"time.google.com",
  "ntp_server2":"time.cloudflare.com",
  "ntp_server3":"time.nist.gov",
  "ntp_server4":"pool.ntp.org"
}

status.json

GET http://10.10.0.1/status.json

This URL can be polled to get the Wi-Fi/Ethernet connection status of the gateway.

{}

ap.json

GET http://10.10.0.1/ap.json

Scan for available Wi-Fi access points that the gateway can connect to.

[
{"ssid":"Pantum-AP-A6D49F","chan":11,"rssi":-55,"auth":4},
{"ssid":"a0308","chan":1,"rssi":-56,"auth":3}
]

connect.json

POST http://10.10.0.1/connect.json

Connect to a Wi-Fi network or Ethernet.

Data containing authentication information is transmitted in the body of the request in encrypted form.

Request Body

NameTypeDescription

hash*

String

SHA256 hash of unencrypted request, encoded as base64

iv*

String

AES initialization vector, encoded as base64

encrypted*

String

Encrypted request, encoded as base64

{}

Example:

Unencrypted content of "/connect.json" is data in json format:

Field nameDescription

ssid

WiFi network SSID or null for Ethernet

password

Strings with a Wi-Fi password or null for Ethernet. The null value is also used for reconnecting to the last saved Wi-Fi network.

stub

A string of spaces, which is chosen so that the json length is always 240 bytes, regardless of SSID length and password length.

Example of unencrypted data for connecting to Wi-Fi with the name "my_ssid1":

{"ssid": "my_ssid1", "password": "12345678", "stub": "                            "}

Example of unencrypted data for connecting to Wi-Fi with the name "my_ssid1" using the saved password (the value "null" is passed to indicate that the saved value of the password is to be used):

{"ssid": "my_ssid1", "password": null, "stub": "                            "}

Example of unencrypted data for connecting to Ethernet:

{"ssid": null, "password": null, "stub": "                            "}

connect.json

DELETE http://10.10.0.1/connect.json

Disconnect from WiFi or Ethernet.

{}

metrics

GET http://10.10.0.1/metrics

Get machine statistics, such as uptime and free memory. Data is in Prometheus format. For more details, please see https://prometheus.io/docs/instrumenting/exposition_formats/ .

ruuvigw_received_advertisements 2566 ruuvigw_uptime_us 65447769 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_EXEC"} 205004 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_32BIT"} 211468 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_8BIT"} 136412 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_DMA"} 136412 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_PID2"} 0 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_PID3"} 0 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_PID4"} 0 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_PID5"} 0 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_PID6"} 0 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_PID7"} 0 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_SPIRAM"} 0 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_INTERNAL"} 211468 ruuvigw_heap_free_bytes{capability="MALLOC_CAP_DEFAULT"} 136604 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_EXEC"} 129948 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_32BIT"} 129948 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_8BIT"} 129948 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_DMA"} 129948 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_PID2"} 0 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_PID3"} 0 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_PID4"} 0 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_PID5"} 0 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_PID6"} 0 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_PID7"} 0 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_SPIRAM"} 0 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_INTERNAL"} 129948 ruuvigw_heap_largest_free_block_bytes{capability="MALLOC_CAP_DEFAULT"} 129948

history

GET http://10.10.0.1/history

Get history data in json format

Path Parameters

NameTypeDescription

time

integer

Read the history for the last N seconds only

See examples of the "history" payload here: HTTP GET /history (with timestamps) and decoding

Last updated