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 17### Configure SNMP proxy to BMC/Service Processor ### 18 19### Service Processor/BMC SNMP Community String. 20# Name: BMC_COMMUNITY 21# Description: Set community string of the Service Processor (BMC)'s 22# SNMP agent. 23# Default: public 24# 25BMC_COMMUNITY="public" 26 27### OEM Specific OID of Service Processor 28# Name: BMC_OID 29# Description: SNMP OID that we would like to redirect to the Service 30# Processor (BMC). This can be unique to each OEM. 31# Default: ".1.3.6.1.4.1.674.10892.2" 32BMC_OID=".1.3.6.1.4.1.674.10892.2" # Dell iDRAC 33 34### Forward Traps from the Service Processor to trap sink 35# Name: TRAP_FORWARD 36# Description: Enabling this will allow traps from the Service Processor 37# to be directed to this system and configure snmptrapd 38# Note: This option will have no effect if trap sink on the system is 39# not configured 40# Default: "no" 41TRAP_FORWARD="yes" 42 43### Reload snmpd and snmptrapd 44# Name: RELOAD_SERVICES 45# Description: Reload snmpd and snmptrapd after making changes to their config 46# files. 47# Default: "yes" 48RELOAD_SERVICES="yes" 49