{% extends 'base.html' %} {% from '_partials/page_header.html' import page_header %} {% block title %}Networking · Hotspot{% endblock %} {% block content %} {{ page_header('Networking', tabs=tabs, active_tab='hotspot') }} {% if hotspot.legacy_iface %} {# Set up before the access point moved to its own interface. It still broadcasts, but it holds the radio's only station slot, so the unit cannot join a Wi-Fi network while it runs. #}
Not configured. A hotspot lets a technician reach this device over Wi-Fi without knowing its LAN address.
{% endif %}| IP address | MAC | Signal | Idle | Rx | Tx |
|---|---|---|---|---|---|
| {{ c.ip or '—' }}{% if c.hostname %}{{ c.hostname }}{% endif %} | {{ c.mac }} | {{ (c.signal_dbm ~ ' dBm') if c.signal_dbm is not none else '—' }} | {{ ((c.inactive_ms / 1000) | round(1) ~ ' s') if c.inactive_ms is not none else '—' }} | {{ c.rx_bytes if c.rx_bytes is not none else '—' }} | {{ c.tx_bytes if c.tx_bytes is not none else '—' }} |
No clients connected.
{% endif %}