Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated generator doc; fixes #1268 #1269

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion generator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,13 @@ modules:
# May need to be reduced for buggy devices.
retries: 3 # How many times to retry a failed request, defaults to 3.
timeout: 5s # Timeout for each individual SNMP request, defaults to 5s.

allow_nonincreasing_oids: false # Do not check whether the returned OIDs are increasing, defaults to false
# Some agents return OIDs out of order, but can complete the walk anyway.
# -Cc option of NetSNMP
use_unconnected_udp_socket: false # Use a unconnected udp socket, defaults to false
# Some multi-homed network gear isn't smart enough to send SNMP responses
# from the address it received the requests on. To work around that,
# we can open unconnected UDP socket and use sendto/recvfrom

lookups: # Optional list of lookups to perform.
# The default for `keep_source_indexes` is false. Indexes must be unique for this option to be used.
Expand Down