Additional Security Measures for Syslog over SSH
- by Eric
I'm currently working on setting up some secure syslog connections between a few Fedora servers. This is my currently setup
192.168.56.110 (syslog-server) <---- 192.168.57.110 (syslog-agent)
From the agent, I am running this command:
ssh -fnNTx -L 1514:127.0.0.1:514 syslog_user@192.168.56.110
This works just fine. I have rsyslog on the…