SA-syslog_collection
SA-syslog_collection copied to clipboard
add syslog forwarding to 3rd party example
- rsyslog
# udp
*.* @10.1.1.1:514
# tcp
*.* @@10.1.1.1:514
# udp with compression
*.* @(z9)10.1.1.1:514
- syslog-ng
destination d_loghost {udp("10.1.1.1" port(514) spoof_source(yes)); };
- also add example of HWF/idx sending syslog to 3rd party
also need:
log { source(s_remote); destination(d_loghost); flags(catchall); };
^ position on this statement matters or you will not send all events (ex: putting it last in the rules means nothing gets sent)
good call
also add example of HWF/idx sending syslog to 3rd party