in reply to Net::SNMP not retreiving Hex-STRING correctly
You might also want to use Data::Dumper to output the results:$response_href = $session->get_request( $sysContact, $sysDescr, $sysLo +cation, $sysObjectID, $localDomain, $localHostname );
use Data::Dumper; print Data::Dumper->Dump([$response_href],['response hash']);
|
---|