Try something like this maybe?<br><br>Call it from your mrtg.cfg as an external sensor. $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 "0"<br>echo "Device Name"<br>echo "N/A"<br>##########################################################################<br><br><br>-Mike<br>