diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-12-13 03:48:12 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-12-13 04:01:09 +0100 |
commit | 2c7555cf2ac8439713dd9148b348128c57222a38 (patch) | |
tree | 491afd5a5e62cffd85dee4f726d4eb2f3db42cf8 /doc | |
parent | 8cf1be6f67eaeb9bfd2fffe4a4bc9ae419adffd5 (diff) |
Log: Add support for UDP logging
Add support for UDP logging, using RFC 3164 syslog protocol.
Based on the patch from Alexander Zubkov <green@qrator.net>, thanks!
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bird.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/bird.sgml b/doc/bird.sgml index 419a4537..79d5873f 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -543,11 +543,12 @@ ipv6 table include "tablename.conf";; </code> - <tag><label id="opt-log">log "<m/filename/" [<m/limit/ "<m/backup/"] | syslog [name <m/name/] | stderr all|{ <m/list of classes/ }</tag> + <tag><label id="opt-log">log "<m/filename/" [<m/limit/ "<m/backup/"] | syslog [name <m/name/] | stderr | udp <m/address/ [port <m/port/] all|{ <m/list of classes/ }</tag> Set logging of messages having the given class (either <cf/all/ or <cf>{ error|trace [, <m/.../] }</cf> etc.) into selected destination - a file specified as a filename string (with optional log rotation information), - syslog (with optional name argument), or the stderr output. + syslog (with optional name argument), the stderr output, or as a UDP + message (in <rfc id="3164"> syslog format). Classes are: <cf/info/, <cf/warning/, <cf/error/ and <cf/fatal/ for messages about local problems, |