If I understand your post correctly, you have a couple of options:
1) If you have applications capable of sending snmptraps (vs. syslog), then enable snmptrapd on your syslog server. Snmptrapd can be configured to log received snmp traps via syslog. See the -L option.
2) If you are simply wanting to have all remote syslog daemons log to a centralized syslog server. Then add the following to each remote syslog.conf:
*.* @192.168.1.3
Obviously, the syslog server running at 192.168.1.3 needs to have the -r option enabled. See: man syslogd
|