Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

# syslog-ng configuration file.

# SJA basic system auth logs from Centos to Qradar


# Jan 2017
options {
flush_lines (0);
time_reopen (10);
log_fifo_size (1000);
chain_hostnames (off);
use_dns (no);
use_fqdn (no);
create_dirs (no);
keep_hostname (yes);
};
source s_sja_auth { file("/var/log/secure"); };
destination auth_destination { tcp("x.x.x.x" port(514)); };
log{
source(s_sja_auth);
destination(auth_destination);
};
[root@Server name syslog-ng]#

You might also like