Advertisement
Guest User

Untitled

a guest
Oct 21st, 2011
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. # This file controls the activity of snmpd and snmptrapd
  2.  
  3. # MIB directories. /usr/share/snmp/mibs is the default, but
  4. # including it here avoids some strange problems.
  5. export MIBDIRS=/usr/share/snmp/mibs
  6.  
  7. # snmpd control (yes means start daemon).
  8. SNMPDRUN=yes
  9.  
  10. # snmpd options (use syslog, close stdin/out/err).
  11. # replace 204.x.y.z with your public IP
  12. SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -I -smux -p /var/run/snmpd.pid'
  13.  
  14. # snmptrapd control (yes means start daemon). As of net-snmp version
  15. # 5.0, master agentx support must be enabled in snmpd before snmptrapd
  16. # can be run. See snmpd.conf(5) for how to do this.
  17. TRAPDRUN=no
  18.  
  19. # snmptrapd options (use syslog).
  20. TRAPDOPTS='-Lsd -p /var/run/snmptrapd.pid'
  21.  
  22. # create symlink on Debian legacy location to official RFC path
  23. SNMPDCOMPAT=yes
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement