home-assistant.io/source/_components/device_tracker.snmp.markdown
2016-02-07 14:20:52 -08:00

1.8 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category
layout title description date sidebar comments sharing footer logo ha_category
page SNMP Instructions how to integrate SNMP into Home Assistant. 2015-10-08 12:00 true false true true network-snmp.png Presence Detection

Most wifi-accesspoints (WAP) and wifi-routers (WRT) support the Simple Network Management Protocol (SNMP). This is a standardized method for monitoring/manageing network connected devices. SNMP uses a tree-like hierarchy where each node is an object. Many of these objects contain (live) lists of insances and metrics, like network interfaces, disks, and wifi registrations.

This device tracker needs SNMP to be enabled on the router.

OID examples:

  • Microtik: 1.3.6.1.4.1.14988.1.1.1.2.1.1 (confirmed)
  • Aruba: 1.3.6.1.4.1.14823.2.3.3.1.2.4.1.2 (untested)
  • BiPAC 7800DXL: 1.3.6.1.2.1.17.7.1.2.2.1.1 (confirmed on firmware 2.32e)

To use the snmp platform in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
device_tracker:
  platform: snmp
  host: 192.168.1.1
  community: public
  baseoid: 1.3.6.1.4.1.14988.1.1.1.2.1.1

Configuration variables:

  • host (Required): The IP address of the router, eg. 192.168.1.1.

  • community (Required): The SNMP community which is configured in the WAP/WRT. Most devices have a default community set to to public with read-only permission (which is sufficient).

  • baseoid (Required): The OID prefix where wireless client registrations can be found, usually vendor specific. It's advised to use the numerical notation. To find this base OID, check vendor documentation or check the MIB file for your device.

See the device tracker component page for instructions how to configure the people to be tracked.