summaryrefslogtreecommitdiffstats
path: root/doc/omsnmp.html
blob: 31aaef24b6678b76aaeadcf552a8ba3694d6874d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<meta http-equiv="Content-Language" content="en">
<title>SNMP Output Module</title></head>

<body>

<h1>SNMP Output Module</h1>
<p><b>Module Name:&nbsp;&nbsp;&nbsp; omsnmp</b></p>
<p><b>Author: Andre Lorbach &lt;alorbach@adiscon.com&gt;</b></p>
<p><b>Description</b>:</p>
<p>Provides the ability to send syslog messages as an SNMPv1 &amp; v2c traps. By 
default, SNMPv2c is preferred. The syslog message is wrapped into a OCTED 
STRING variable. This module uses the <a target="_blank" href="http://net-snmp.sourceforge.net/">
NET-SNMP</a> library. In order to compile this module, you will need to have the
<a target="_blank" href="http://net-snmp.sourceforge.net/">NET-SNMP</a> 
developer (headers) package installed. </p>
<p>&nbsp;</p>
<p><b>Action Line:</b></p>
<p>%omsnmp% without any further parameters.</p>
<p>&nbsp;</p>
<p><b>Configuration Directives</b>:</p>
<ul>
	<li><strong>$actionsnmptransport </strong>(This parameter is optional, the 
	default value is "udp")<br>
	<br>
	Defines the transport type you wish to use. Technically we can support all 
	transport types which are supported by NET-SNMP. <br>
	To name a few possible values: <br>
	<br>
	udp, tcp, udp6, tcp6, icmp, icmp6 ...<br>
	<br>
	Example: <strong>$actionsnmptransport udp<br>
	</strong></li>
	<li><strong>$actionsnmptarget</strong><br>
	<br>
	This can be a hostname or ip address, and is our snmp target host. This 
	parameter is required, if the snmptarget is not defined, nothing will be 
	send. <br>
	<br>
	Example: <strong>$actionsnmptarget server.domain.xxx</strong><br>
	</li>
	<li><strong>$actionsnmptargetport </strong>(This parameter is optional, the 
	default value is "162")<br>
	<br>
	The port which will be used, common values are port 162 or 161. <br>
	<br>
	Example: <strong>$actionsnmptargetport 162</strong><br>
	</li>
	<li><strong>$actionsnmpversion </strong>(This parameter is optional, the 
	default value is "1")<br>
	<br>
	There can only be two choices for this parameter for now. <br>
	0 means SNMPv1 will be used.<br>
	1 means SNMPv2c will be used. <br>
	Any other value will default to 1. <br>
	<br>
	Example: <strong>$actionsnmpversion 1</strong><br>
	</li>
	<li><strong>$actionsnmpcommunity </strong>(This parameter is optional, the 
	default value is "public")<br>
	<br>
	This sets the used SNMP Community.<br>
	<br>
	Example:<strong> $actionsnmpcommunity public<br>
	</strong><br>
	</li>
	<li><strong>$actionsnmptrapoid </strong>(This parameter is 
	optional, the default value is "1.3.6.1.4.1.19406.1.2.1&quot; which means 
	&quot;ADISCON-MONITORWARE-MIB::syslogtrap&quot;)<br>
	This configuration parameter is used for <strong>SNMPv2</strong> only.<br>
	<br>
	This is the OID which defines the trap-type, or notifcation-type rsyslog 
	uses to send the trap. <br>
	In order to decode this OID, you will need to have the 
	ADISCON-MONITORWARE-MIB and ADISCON-MIB mibs installed on the receiver side. Downloads of these mib files 
	can be found here: <br>
	<a href="http://www.adiscon.org/download/ADISCON-MIB.txt">
	http://www.adiscon.org/download/ADISCON-MIB.txt</a><br>
	<a href="http://www.adiscon.org/download/ADISCON-MONITORWARE-MIB.txt">
	http://www.adiscon.org/download/ADISCON-MONITORWARE-MIB.txt</a><br>
	<br>
	Thanks to the net-snmp 
	mailinglist for the help and the recommendations ;).<br>
	<br>
	Example: <strong>$actionsnmptrapoid 1.3.6.1.4.1.19406.1.2.1<br>
	</strong>If you have this MIBS installed, you can also configured with the 
	OID Name: <strong>$actionsnmptrapoid ADISCON-MONITORWARE-MIB::syslogtrap<br>
	</strong>
	</li>
	<li><strong>$actionsnmpsyslogmessageoid </strong>(This parameter is 
	optional, the default value is "1.3.6.1.4.1.19406.1.1.2.1&quot; which means 
	&quot;ADISCON-MONITORWARE-MIB::syslogMsg&quot;)<br>
	<br>
	This OID will be used as a variable, type &quot;OCTET STRING&quot;. This variable will 
	contain up to 255 characters of the original syslog message including syslog header. It is recommend to 
	use the default OID. <br>
	In order to decode this OID, you will need to have the 
	ADISCON-MONITORWARE-MIB and ADISCON-MIB mibs installed on the receiver side. 
	To download these custom mibs, see the description of <strong>$actionsnmptrapoid.
	</strong><br>
	<br>
	Example: <strong>$actionsnmpsyslogmessageoid 1.3.6.1.4.1.19406.1.1.2.1<br>
	</strong>If you have this MIBS installed, you can also configured with the 
	OID Name: <strong>$actionsnmpsyslogmessageoid 
	ADISCON-MONITORWARE-MIB::syslogMsg<br>
	</strong><br>
	</li>
	<li><strong>$actionsnmpenterpriseoid </strong>(This parameter is optional, 
	the default value is "1.3.6.1.4.1.3.1.1" which means "enterprises.cmu.1.1")<br>
	<br>
	Customize this value if needed. I recommend to use the default value unless 
	you require to use a different OID. <br>
	This configuration parameter is used for <strong>SNMPv1</strong> only. It 
	has no effect if <strong>SNMPv2</strong> is used. <br>
	<br>
	Example: <strong>$actionsnmpenterpriseoid 1.3.6.1.4.1.3.1.1 <br>
	</strong><br>
	</li>
	<li><strong>$actionsnmpspecifictype </strong>(This parameter is optional, 
	the default value is "0")<strong> </strong><br>
	<br>
	This is the specific trap number. This configuration parameter is used for
	<strong>SNMPv1</strong> only. It has no effect if <strong>SNMPv2</strong> is 
	used. <br>
	<br>
	Example: <strong>$actionsnmpspecifictype 0<br>
	</strong><br>
	</li>
	<li><strong>$actionsnmptraptype</strong> (This parameter is optional, the 
	default value is "6" which means SNMP_TRAP_ENTERPRISESPECIFIC) <br>
	<br>
	There are only 7 Possible trap types defined which can be used here. These 
	trap types are: <br>
	0 = SNMP_TRAP_COLDSTART<br>
	1 = SNMP_TRAP_WARMSTART<br>
	2 = SNMP_TRAP_LINKDOWN<br>
	3 = SNMP_TRAP_LINKUP<br>
	4 = SNMP_TRAP_AUTHFAIL<br>
	5 = SNMP_TRAP_EGPNEIGHBORLOSS<br>
	6 = SNMP_TRAP_ENTERPRISESPECIFIC<br>
	<br>
	Any other value will default to 6 automatically. This configuration 
	parameter is used for <strong>SNMPv1</strong> only. It has no effect if
	<strong>SNMPv2</strong> is used. <br>
	<br>
	Example: <strong>$actionsnmptraptype 6</strong><br>
	</li>
</ul>
<p>&nbsp;</p>
<p><b>Caveats/Known Bugs:</b></p><ul><li>In order to decode the custom OIDs, you 
	will need to have the adiscon mibs installed. </li></ul>
<p><b>Sample:</b></p>
<p>The following commands send every message as a snmp trap.</p>
<textarea rows="10" cols="60">$ModLoad omsnmp

$actionsnmptransport udp
$actionsnmptarget localhost
$actionsnmptargetport 162
$actionsnmpversion 1
$actionsnmpcommunity public

*.* :omsnmp:
</textarea>

<p>[<a href="rsyslog_conf.html">rsyslog.conf overview</a>] [<a href="manual.html">manual 
index</a>] [<a href="http://www.rsyslog.com/">rsyslog site</a>]</p>
<p><font size="2">This documentation is part of the
<a href="http://www.rsyslog.com/">rsyslog</a> project.<br>
Copyright © 2008 by <a href="http://www.gerhards.net/rainer">Rainer Gerhards</a> and
<a href="http://www.adiscon.com/">Adiscon</a>. Released under the GNU GPL 
version 3 or higher.</font></p>

</body></html>