Try something like this maybe?<br><br>Call it from your mrtg.cfg as an external sensor.&nbsp;&nbsp; $1 is the ip of the device..<br><br>##########################################################################<br>#!/bin/bash<br>linecount=`snmpget -OvUq -r 3 -t 20 -v 1 -c public $1 1.3.6.1.4.1.9.9.63.1.3.1.1.1 `<br>
echo $linecount | wc -l<br>echo &quot;0&quot;<br>echo &quot;Device Name&quot;<br>echo &quot;N/A&quot;<br>##########################################################################<br><br><br>-Mike<br>