]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/bsnmp/snmpd/snmpd.config
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / bsnmp / snmpd / snmpd.config
1 #
2 # Copyright (c) 2001-2003
3 #       Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 #       All rights reserved.
5 #
6 # Author: Harti Brandt <harti@freebsd.org>
7
8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions
10 # are met:
11 # 1. Redistributions of source code must retain the above copyright
12 #    notice, this list of conditions and the following disclaimer.
13 # 2. Redistributions in binary form must reproduce the above copyright
14 #    notice, this list of conditions and the following disclaimer in the
15 #    documentation and/or other materials provided with the distribution.
16
17 # THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 # ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 # SUCH DAMAGE.
28 #
29 # $Begemot: bsnmp/snmpd/snmpd.config,v 1.16 2006/02/14 09:04:20 brandt_h Exp $
30 #
31 # Example configuration file.
32 #
33
34 #
35 # Set some common variables
36 #
37 host := foo.bar.com
38 location := "Room 200"
39 contact := "sysmeister@bar.com"
40 system := 1     # FreeBSD
41 traphost := noc.bar.com
42 trapport := 162
43
44 read := "public"
45 # Uncomment the line below that sets the community string
46 # to enable write access.
47 write := "geheim"
48 trap := "mytrap"
49
50 #
51 # Configuration
52 #
53 %snmpd
54 begemotSnmpdDebugDumpPdus       = 2
55 begemotSnmpdDebugSyslogPri      = 7
56
57 #
58 # Set the read and write communities.
59 #
60 # The default value of the community strings is NULL (note, that this is
61 # different from the empty string). This disables both read and write access.
62 # To enable read access only the read community string must be set. Setting
63 # the write community string enables both read and write access with that
64 # string.
65 #
66 # Be sure to understand the security implications of SNMPv2 - the community
67 # strings are readable on the wire!
68 #
69 begemotSnmpdCommunityString.0.1 = $(read)
70 # begemotSnmpdCommunityString.0.2       = $(write)
71 begemotSnmpdCommunityDisable    = 1
72
73 # open standard SNMP ports
74 begemotSnmpdPortStatus.[$(host)].161 = 1
75 begemotSnmpdPortStatus.127.0.0.1.161 = 1
76
77 # open a unix domain socket
78 begemotSnmpdLocalPortStatus."/var/run/snmpd.sock" = 1
79 begemotSnmpdLocalPortType."/var/run/snmpd.sock" = 4
80
81 # send traps to the traphost
82 begemotTrapSinkStatus.[$(traphost)].$(trapport) = 4
83 begemotTrapSinkVersion.[$(traphost)].$(trapport) = 2
84 begemotTrapSinkComm.[$(traphost)].$(trapport) = $(trap)
85
86 sysContact      = $(contact)
87 sysLocation     = $(location)
88 sysObjectId     = 1.3.6.1.4.1.12325.1.1.2.1.$(system)
89
90 snmpEnableAuthenTraps = 2
91
92 #
93 # Load MIB-2 module
94 #
95 begemotSnmpdModulePath."mibII"  = "/usr/local/lib/snmp_mibII.so"
96
97 #
98 # Netgraph module
99 #
100 begemotSnmpdModulePath."netgraph" = "/usr/local/lib/snmp_netgraph.so"
101
102 %netgraph
103 begemotNgControlNodeName = "snmpd"