Hello,
I've compiled and installed the latest stable build 3.20.4. I"ve even gone as far as creating an RPM installer based on a heavily modified SPEC from the v2.0.0-11 build that is in the current Cent OS repos. All this needs testing and validation before I can say it is safe to share.
At this point, ryslogd is running on two machines. Machine A is to be the remote machine that machine B sends it's logs to. On Machine A, I'm getting local information only and nothing from the remote box. I've tried UDP, TCP and RELP protocols. Nothing is working. Both machines are on the same subnet, so there's no firewall/router issues at this point. Here' s my setup for machine A:
[root@osiris log]# cat /etc/rsyslog.conf
$ModLoad immark
$ModLoad imudp
$ModLoad imtcp
$ModLoad imuxsock
$ModLoad imklog
$ModLoad imrelp
$InputRELPServerRun 20514
## Log all kernel messages to the console.
# Logging much else clutters up the screen.
#kern.* /dev/console
# Log anything (except mail) of level info or higher.
# Don't log private authentication messages!
*.info;mail.none;authpriv.none;cron.none /var/log/messages
# The authpriv file has restricted access.
authpriv.* /var/log/secure
# Log all the mail messages in one place.
mail.* -/var/log/maillog
# Log cron stuff
cron.* /var/log/cron
# Everybody gets emergency messages
*.emerg *
# Save news errors of level crit and higher in a special file.
uucp,news.crit /var/log/spooler
# Save boot messages also to boot.log
local7.* /var/log/boot.log
***as you can see it's pretty vanilla, here's my proof that RELP is listening:
tcp 0 0 0.0.0.0:20514 0.0.0.0:* LISTEN
tcp 0 0 :::20514 :::* LISTEN
*** If anyone is interested or think it may help I can also post the configure and make logs as well.


