Advertisement
Guest User

Untitled

a guest
Jun 11th, 2021
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. modules:
  2. snmp:
  3. walk:
  4. # - cpmCPUTotal5minRev
  5. - ifXTable
  6. - sysUpTime
  7. - interfaces
  8. max_repetitions: 25 # How many objects to request with GET/GETBULK, defaults to 25.
  9. retries: 3 # How many times to retry a failed request, defaults to 3.
  10. timeout: 5s # Timeout for each individual SNMP request, defaults to 5s.
  11. auth:
  12. community: XXXXX # SNMP session
  13. lookups:
  14. - source_indexes: [ifIndex]
  15. lookup: ifAlias
  16. - source_indexes: [ifIndex]
  17. lookup: 1.3.6.1.2.1.2.2.1.2 # ifDescr
  18. - source_indexes: [ifIndex]
  19. lookup: 1.3.6.1.2.1.31.1.1.1.1 # ifName
  20. overrides:
  21. ifAlias:
  22. ignore: true # Lookup metric
  23. ifDescr:
  24. ignore: true # Lookup metric
  25. ifName:
  26. ignore: true # Lookup metric
  27. ifType:
  28. type: EnumAsInfo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement