We are running Solaris 9 on various Sun servers. I need to be able to send logs from the clients to the Central loghost using UDP. Below is a partial Client config file. Note that I don't have a Filter for this. If that is the problem, what kind of filter would I need to send all logs? Any help or suggestions would be appreciated.
# GLOBAL OPTIONS
###########################################################
options {
keep_hostname(yes);
chain_hostnames(no);
create_dirs(yes);
use_time_recvd(yes);
use_dns(no);
use_fqdn(no);
};
# Source
source local { sun-streams("/dev/log" door("/etc/.syslog_door")); internal(); };
destination d_centralhost {
udp("10.5.2.3")
port(514);
};
log { source(local); destination (d_centralhost); };
##################################################################
Thanks,
Zeek