Blame contrib/bmc-snmp-proxy.sysconf

Packit d14fb6
# bmc-snmp-proxy
Packit d14fb6
#
Packit d14fb6
# Config file to control SNMP redirection between
Packit d14fb6
# the OS and Service Processor/Baseboard Management Controller (BMC)
Packit d14fb6
#
Packit d14fb6
# bmc-snnmp-proxy helps redirect certain SNMP requests (to this host)
Packit d14fb6
# destined to the Service Processor. We will need the Service Processor's
Packit d14fb6
# SNMP community string and the OID of the Service Processor's SNMP agent.
Packit d14fb6
#
Packit d14fb6
# For redirecting Traps from the Service Processor to the trap sink
Packit d14fb6
# configured in the host (this system), we will have to set
Packit d14fb6
# TRAP_FORWARD below.
Packit d14fb6
#
Packit d14fb6
# See here for details
Packit d14fb6
#    https://fedoraproject.org/wiki/Features/AgentFreeManagement
Packit d14fb6
Packit d14fb6
### Configure SNMP proxy to BMC/Service Processor ###
Packit d14fb6
Packit d14fb6
### Service Processor/BMC SNMP Community String. 
Packit d14fb6
# Name: BMC_COMMUNITY
Packit d14fb6
# Description: Set community string of the Service Processor (BMC)'s
Packit d14fb6
# 		SNMP agent.
Packit d14fb6
# Default: public
Packit d14fb6
#
Packit d14fb6
BMC_COMMUNITY="public"
Packit d14fb6
Packit d14fb6
### OEM Specific OID of Service Processor
Packit d14fb6
# Name: BMC_OID
Packit d14fb6
# Description: SNMP OID that we would like to redirect to the Service
Packit d14fb6
# 		Processor (BMC). This can be unique to each OEM.
Packit d14fb6
# Default: ".1.3.6.1.4.1.674.10892.2"
Packit d14fb6
BMC_OID=".1.3.6.1.4.1.674.10892.2"  # Dell iDRAC
Packit d14fb6
Packit d14fb6
### Forward Traps from the Service Processor to trap sink
Packit d14fb6
# Name: TRAP_FORWARD
Packit d14fb6
# Description: Enabling this will allow traps from the Service Processor
Packit d14fb6
# 		to be directed to this system and configure snmptrapd
Packit d14fb6
# Note: This option will have no effect if trap sink on the system is
Packit d14fb6
# 	not configured
Packit d14fb6
# Default: "no"
Packit d14fb6
TRAP_FORWARD="yes"
Packit d14fb6
Packit d14fb6
### Reload snmpd and snmptrapd
Packit d14fb6
# Name: RELOAD_SERVICES
Packit d14fb6
# Description: Reload snmpd and snmptrapd after making changes to their config
Packit d14fb6
# 		files.
Packit d14fb6
# Default: "yes"
Packit d14fb6
RELOAD_SERVICES="yes"