syslog-receive examples

syslog-receive examples

Collect syslog over UDP port 10514 

syslog-receive --port 10514

Collect syslog over TCP on the IPv6 loopback interface

syslog-receive --proto TCP --intf ::1

Dump only collected syslog messages in hex format

syslog-receive --no-from --hex --log-lvl 6

Collect syslog over TLS with no client authentication

syslog-receive --proto TLS --port 6514 --cert server.pem --key server.key --pwd SECRET

Collect syslog over TLS. Validate known client certificates with fingerprints file

syslog-receive -- proto TLS --port 6514 --cert s.crt --key s.key --fp-file fp.txt

    • Related Articles

    • syslog-receive versions

      Version 0.9.0 Initial release Go back to syslog-receive page
    • syslog-receive options

      Usage: syslog-receive [options] General syslog options: --proto arg (=UDP) Supported syslog protocols: UDP, TCP, TLS --intf arg (=0.0.0.0) Local interface to bind: IPv4/IPv6 address --port n (=514) Port to listen (1-65535) --max-len n (=2048) Maximum ...