bmc-snmp-proxy.sysconf 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # bmc-snmp-proxy
  2. #
  3. # Config file to control SNMP redirection between
  4. # the OS and Service Processor/Baseboard Management Controller (BMC)
  5. #
  6. # bmc-snnmp-proxy helps redirect certain SNMP requests (to this host)
  7. # destined to the Service Processor. We will need the Service Processor's
  8. # SNMP community string and the OID of the Service Processor's SNMP agent.
  9. #
  10. # For redirecting Traps from the Service Processor to the trap sink
  11. # configured in the host (this system), we will have to set
  12. # TRAP_FORWARD below.
  13. #
  14. # See here for details
  15. # https://fedoraproject.org/wiki/Features/AgentFreeManagement
  16. ### Configure SNMP proxy to BMC/Service Processor ###
  17. ### Service Processor/BMC SNMP Community String.
  18. # Name: BMC_COMMUNITY
  19. # Description: Set community string of the Service Processor (BMC)'s
  20. # SNMP agent.
  21. # Default: public
  22. #
  23. BMC_COMMUNITY="public"
  24. ### OEM Specific OID of Service Processor
  25. # Name: BMC_OID
  26. # Description: SNMP OID that we would like to redirect to the Service
  27. # Processor (BMC). This can be unique to each OEM.
  28. # Default: ".1.3.6.1.4.1.674.10892.2"
  29. BMC_OID=".1.3.6.1.4.1.674.10892.2" # Dell iDRAC
  30. ### Forward Traps from the Service Processor to trap sink
  31. # Name: TRAP_FORWARD
  32. # Description: Enabling this will allow traps from the Service Processor
  33. # to be directed to this system and configure snmptrapd
  34. # Note: This option will have no effect if trap sink on the system is
  35. # not configured
  36. # Default: "no"
  37. TRAP_FORWARD="yes"
  38. ### Reload snmpd and snmptrapd
  39. # Name: RELOAD_SERVICES
  40. # Description: Reload snmpd and snmptrapd after making changes to their config
  41. # files.
  42. # Default: "yes"
  43. RELOAD_SERVICES="yes"