Site updated at 2017-06-27 06:41:02 UTC
This commit is contained in:
parent
315bd59603
commit
1f2e6beb09
26 changed files with 101 additions and 51 deletions
|
@ -76,20 +76,70 @@
|
|||
<hr class="divider">
|
||||
<p>A lot WiFi access points and WiFi routers 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.</p>
|
||||
<p class="note warning">
|
||||
This device tracker needs SNMP to be enabled on the router.
|
||||
This device tracker needs SNMP to be enabled on the router. It could be that you need to install the SNMP support manually.
|
||||
</p>
|
||||
<p>OID examples:</p>
|
||||
<ul>
|
||||
<li>Mikrotik: <code class="highlighter-rouge">1.3.6.1.4.1.14988.1.1.1.2.1.1</code> (confirmed, unknown RouterOS version/model)</li>
|
||||
<li>Mikrotik: <code class="highlighter-rouge">1.3.6.1.2.1.4.22.1.2</code> (confirmed, RouterOS 6.x on RB2011)</li>
|
||||
<li>Aruba: <code class="highlighter-rouge">1.3.6.1.4.1.14823.2.3.3.1.2.4.1.2</code> (untested)</li>
|
||||
<li>BiPAC 7800DXL: <code class="highlighter-rouge">1.3.6.1.2.1.17.7.1.2.2.1.1</code> (confirmed on firmware 2.32e)</li>
|
||||
<li>OpenWrt: <code class="highlighter-rouge">1.3.6.1.2.1.4.22.1.2</code> (tested on Chaos Calmer 15.05 firmware, need to install snmpd package)</li>
|
||||
<li>pfSense: <code class="highlighter-rouge">1.3.6.1.2.1.4.22.1.2</code> (tested on 2.2.4-RELEASE, need to enable SNMP service)</li>
|
||||
<li>TPLink: <code class="highlighter-rouge">1.3.6.1.2.1.3.1.1.2.19.1</code> (Archer VR2600v, need to enable SNMP service)</li>
|
||||
<li>EdgeRouter <code class="highlighter-rouge">1.3.6.1.2.1.4.22.1.2</code> (EdgeRouter Lite v1.9.0, need to enable SNMP service)</li>
|
||||
<li>Ruckus: <code class="highlighter-rouge">1.3.6.1.4.1.25053.1.2.2.1.1.3.1.1.1.6</code> (Ruckus ZoneDirector, tested on 9.13.3)</li>
|
||||
</ul>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Brand</th>
|
||||
<th>Device/Firmware</th>
|
||||
<th>OID</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Mikrotik</td>
|
||||
<td>unknown RouterOS version/model</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.4.1.14988.1.1.1.2.1.1</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mikrotik</td>
|
||||
<td>RouterOS 6.x on RB2011</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.2.1.4.22.1.2</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Aruba</td>
|
||||
<td>(untested)</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.4.1.14823.2.3.3.1.2.4.1.2</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>pfSense</td>
|
||||
<td>2.2.4</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.2.1.4.22.1.2</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>BiPAC</td>
|
||||
<td>7800DXL Firmware 2.32e</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.2.1.17.7.1.2.2.1.1</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>OpenWrt</td>
|
||||
<td>Chaos Calmer 15.05</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.2.1.4.22.1.2</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TP-Link</td>
|
||||
<td>Archer VR2600v</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.2.1.3.1.1.2.19.1</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TP-Link</td>
|
||||
<td>Archer VR600</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.2.1.3.1.1.2</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>EdgeRouter</td>
|
||||
<td>Lite v1.9.0</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.2.1.4.22.1.2</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Ruckus</td>
|
||||
<td>ZoneDirector 9.13.3</td>
|
||||
<td><code class="highlighter-rouge">1.3.6.1.4.1.25053.1.2.2.1.1.3.1.1.1.6</code></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>To use the SNMP version 1 platform in your installation, add the following to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry for SNMP version 1</span>
|
||||
<span class="s">device_tracker</span><span class="pi">:</span>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue