Created
January 12, 2017 05:15
-
-
Save javierwilson/02dc0a45640abc19cbef0a9f5e7be567 to your computer and use it in GitHub Desktop.
SNMP config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # /etc/snmp/snmpd.conf | |
| # | |
| # gives read-only access to nagios_server using secname, secgroup | |
| # | |
| # sec.name source community | |
| com2sec localhost 127.0.0.1 public | |
| com2sec nagios MONITOR public | |
| # groupName securityModel securityName | |
| group Local v1 localhost | |
| group Nagios v1 nagios | |
| group Local v2c localhost | |
| group Nagios v2c nagios | |
| # Make at least snmpwalk -v 1 localhost -c public system fast again. | |
| # name incl/excl subtree mask(optional) | |
| view all included .1 | |
| view all included .iso.org.dod.internet.mgmt F8 | |
| view all included .iso 80 | |
| # group context sec.model sec.level prefix read write notif | |
| access Local "" any noauth exact all none none | |
| access Nagios "" any noauth exact all none none |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment