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.<br>
<br># GLOBAL OPTIONS<br>###########################################################<br><br>options {<br>keep_hostname(yes);<br>chain_hostnames(no);<br>create_dirs(yes);<br>use_time_recvd(yes);<br>use_dns(no);<br>use_fqdn(no);<br>
};<br><br># Source<br><br>source local { sun-streams("/dev/log" door("/etc/.syslog_door")); internal(); };<br><br>destination d_centralhost {<br>udp("10.5.2.3")<br>port(514);<br>};<br><br>log { source(local); destination (d_centralhost); };<br>
##################################################################<br><br>Thanks,<br>Zeek<br><br><br>