Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - user944801

#1
Another destination driver & log statement in a custom syslog-ng conf file can be used to accomplish this. It may not survive software updates though.

Ex: /usr/local/etc/syslog-ng.conf.d/syslog-ng-system-log-remote.conf


destination system_log_remote_syslog {
    network("IP Address Goes Here" port(514) transport(udp));
};
log {
    source(s_all);
    filter(f_local_system);
    destination(system_log_remote_syslog);
};