diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-12-05 14:41:27 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-12-05 14:41:27 +0100 |
commit | f716ff2349ba2d59d2540e5dd14fc08c67b68a0a (patch) | |
tree | b6937709805df83f5e0bacb077eb1b1a2fc6a68c /doc | |
parent | afdccceefa30306cf720a27efd5a29bcc5a916c9 (diff) | |
download | rsyslog-f716ff2349ba2d59d2540e5dd14fc08c67b68a0a.tar.gz rsyslog-f716ff2349ba2d59d2540e5dd14fc08c67b68a0a.tar.xz rsyslog-f716ff2349ba2d59d2540e5dd14fc08c67b68a0a.zip |
doc bugfix: v3-compatiblity document had typo in config directive
thanks to Andrej for reporting this
Diffstat (limited to 'doc')
-rw-r--r-- | doc/v3compatibility.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/v3compatibility.html b/doc/v3compatibility.html index 51619947..ad8776bb 100644 --- a/doc/v3compatibility.html +++ b/doc/v3compatibility.html @@ -95,7 +95,7 @@ set the local address the server should listen to via <b>$UDPServerAddress <p>The following example configures an UDP syslog server at the local address 192.0.2.1 on port 514:</p> <p><b>$ModLoad imudp<br> -$UDPSeverAddress 192.0.2.1 # this MUST be before the $UDPServerRun +$UDPServerAddress 192.0.2.1 # this MUST be before the $UDPServerRun directive!<br> $UDPServerRun 514</b></p> <p>"$UDPServerAddress *" means listen on all local interfaces. @@ -103,10 +103,10 @@ This is the default if no directive is specified.</p> <p>Please note that now multiple listeners are supported. For example, you can do the following:</p> <p><b>$ModLoad imudp<br> -$UDPSeverAddress 192.0.2.1 # this MUST be before the $UDPServerRun +$UDPServerAddress 192.0.2.1 # this MUST be before the $UDPServerRun directive!<br> $UDPServerRun 514<br> -$UDPSeverAddress * # all local interfaces<br> +$UDPServerAddress * # all local interfaces<br> $UDPServerRun 1514</b></p> <p>These config file settings run two listeners: one at 192.0.2.1:514 and one on port 1514, which listens on all local |