Ok my first stab at it was great (snmp.pl) #!/usr/bin/perl $SNMP_GET_CMD = “snmpget -v1 -c public -Ovq”; $SNMP_TARGET = “1.1.1.2″; chomp($model = `${SNMP_GET_CMD} ${SNMP_TARGET} 1.3.6.1.2.1.1.3.0`); chomp($serial = `${SNMP_GET_CMD} ${SNMP_TARGET} 1.3.6.1.2.1.1.4.0`); $model =~ s/\”//g; # Ditch the quotes. $serial =~ s/\”//g;




