Penguin
Annotated edit history of ZebraSNMP version 2, including all changes. View license author blame.
Rev Author # Line
1 DanielLawson 1 ''Yesterday it worked.%%%
2 Today it is not working.%%%
3 Windows is like that.''
4
5 Or Zebra / SNMP, if you believe arachnid...
6
7
2 DanielLawson 8 ''To get SNMP support working zebra, paste the following snippets into the relevant file. Note that should change snmpcommunity for some community name that is secure and working in your current snmpd.conf.''
1 DanielLawson 9
10 --- /etc/snmp/snmpd.conf --------------------------------------------------
11
12 ###########################################################################
13 # SECTION: SMUX for Zebra Routing Daemon
14 #
15
16 smuxpeer .1.3.6.1.4.1.3317.1.2.1 snmpcommunity
17 smuxpeer .1.3.6.1.4.1.3317.1.2.2 snmpcommunity
18 smuxpeer .1.3.6.1.4.1.3317.1.2.3 snmpcommunity
19 smuxpeer .1.3.6.1.4.1.3317.1.2.4 snmpcommunity
20 smuxpeer .1.3.6.1.4.1.3317.1.2.5 snmpcommunity
21 # obsolete hardcoded OID
22 smuxpeer .1.3.6.1.6.3.1 snmpcommunity
23 # OSPF2MIB
24 smuxpeer .1.3.6.1.2.1.14 snmpcommunity
25 # BGP4MIB ("mib-2.15 of RFC1657")
26 smuxpeer .1.3.6.1.2.1.15 snmpcommunity
27 # RIPV2MIB
28 smuxpeer .1.3.6.1.2.1.4.23 snmpcommunity
29 # IPFWMIB
30 smuxpeer .1.3.6.1.2.1.4.24 snmpcommunity
31
32 --- /etc/zebra/zebra.conf -------------------------------------------------
33
34 smux peer 1.3.6.1.4.1.3317.1.2.5 snmpcommunity
35
36 --- /etc/zebra/ospfd.conf -------------------------------------------------
37 # OSPF2MIB
38 smux peer 1.3.6.1.2.1.14 snmpcommunity
39
40 --- /etc/zebra/bgpd.conf -------------------------------------------------
41 # BGP4MIB ("mib-2.15 of RFC1657")
42 smux peer 1.3.6.1.2.1.15 snmpcommunity
43
44 Warning: snmpcommunity is technically a password and should be considered insecure, - it syslogs it all over the place! (Stupid snmpd.) Note that snmpd.conf doesn't have the space in 'smuxpeer' while Zebra does.