2007-01-15 23:26:37 +00:00
|
|
|
## Path: System/Net-SNMP
|
|
|
|
## Description: Log level of the snmp server.
|
|
|
|
## Type: string(!,a,c,e,w,n,i,d,0,1,2,3,4,5,6,7)
|
2010-10-06 21:26:29 +00:00
|
|
|
## Default: n
|
2007-01-15 23:26:37 +00:00
|
|
|
#
|
2016-04-12 17:00:22 +00:00
|
|
|
# Defines the log level for snmpd and snmptrapd.
|
2007-01-15 23:26:37 +00:00
|
|
|
#
|
2010-10-06 21:26:29 +00:00
|
|
|
# The default is "n" (5, LOG_NOTICE)
|
2007-01-15 23:26:37 +00:00
|
|
|
#
|
2010-10-06 21:26:29 +00:00
|
|
|
SNMPD_LOGLEVEL="n"
|
2007-01-15 23:26:37 +00:00
|
|
|
|
|
|
|
## Path: System/Net-SNMP
|
|
|
|
## Description: En-/Disables SNMP SMUX support.
|
|
|
|
## Type: yesno
|
|
|
|
## Default: yes
|
|
|
|
#
|
2010-10-06 21:26:29 +00:00
|
|
|
# Setting this to "no" prevents snmpd from binding to TCP port 199.
|
2007-01-15 23:26:37 +00:00
|
|
|
#
|
2010-10-06 21:26:29 +00:00
|
|
|
# The default is "yes" to provide backward compatibility.
|
2007-01-15 23:26:37 +00:00
|
|
|
#
|
|
|
|
SNMPD_USE_SMUX="yes"
|
|
|
|
|
|
|
|
## Path: System/Net-SNMP
|
2010-10-06 21:26:29 +00:00
|
|
|
## Description: Connection logging.
|
|
|
|
## Type: yesno
|
|
|
|
## Default: yes
|
|
|
|
#
|
|
|
|
# If this setting is "yes" and $SNMPD_LOGLEVEL is set to "i" (LOG_INFO)
|
|
|
|
# or "d" (LOG_DEBUG), snmpd will log all successful connections.
|
|
|
|
#
|
|
|
|
# Setting it to "no" will prevent this kind of log regardless of the
|
|
|
|
# configured log level.
|
|
|
|
#
|
|
|
|
# The default is "yes" to provide backward compatibility.
|
|
|
|
#
|
2007-01-15 23:26:37 +00:00
|
|
|
SNMPD_LOG_SUCCESSFUL_CONNECTIONS="yes"
|
2016-04-12 17:00:22 +00:00
|
|
|
|
|
|
|
## Path: System/Net-SNMP
|
|
|
|
## Description: Log Destination
|
|
|
|
## Type: string(F,S)
|
|
|
|
## Default: S
|
|
|
|
#
|
|
|
|
# Defines the log destination for snmpd and snmptrapd.
|
|
|
|
#
|
|
|
|
# By setting it to "F", snmpd will write log messages into '/var/log/net-snmpd.log'.
|
|
|
|
#
|
|
|
|
# The default is "S" to log messages through the syslog service.
|
|
|
|
#
|
|
|
|
SNMPD_LOGDEST="S"
|
|
|
|
|
|
|
|
## Path: System/Net-SNMP
|
|
|
|
## Description: Listening IP addresses
|
|
|
|
## Type: string
|
|
|
|
## Default: "" (empty - listen on all interfaces)
|
|
|
|
#
|
|
|
|
# Defines the IP address(es) that snmpd and snmptrapd binds to.
|
|
|
|
# If no address is defined the daemon will listen on all interfaces.
|
|
|
|
#
|
|
|
|
SNMPD_LISTEN=""
|
|
|
|
|