snmpbulkget
Bulk retrieve SNMP MIB values efficiently
TLDR
SYNOPSIS
snmpbulkget [options] agent oid...
DESCRIPTION
snmpbulkget retrieves multiple MIB values from an SNMP agent in a single request using the GETBULK operation introduced in SNMPv2c. This is significantly more efficient than issuing multiple individual GET or GETNEXT requests, especially when retrieving large tables or sequential OID ranges.
The -Cn (non-repeaters) parameter specifies how many of the initial OIDs should be retrieved with a simple GETNEXT, while -Cr (max-repetitions) controls how many successive values to fetch for the remaining OIDs. This combination allows mixing scalar and tabular data retrieval in a single request.
The tool is part of the Net-SNMP suite and requires SNMPv2c or SNMPv3, as the GETBULK operation is not available in SNMPv1.
PARAMETERS
-v version
SNMP version (2c, 3).-c community
Community string.-Cn num
Non-repeaters count.-Cr num
Max repetitions.-O opts
Output options.
SEE ALSO
snmpget(1), snmpgetnext(1), snmpwalk(1)

