Setting up a Logging Server
Summary
This is to setup a logging server to capture logs from any servers on your network.
Configuration
You will need to edit the file "/etc/rsyslog.conf"
vi /etc/rsyslog.com
You will need to change to the following to allow port 514 to be open
# Provides UDP syslog reception# for parameters see http://www.rsyslog.com/doc/imudp.htmlmodule(load="imudp") # needs to be done just onceinput(type="imudp" port="514")
# Provides TCP syslog reception# for parameters see http://www.rsyslog.com/doc/imtcp.htmlmodule(load="imtcp") # needs to be done just onceinput(type="imtcp" port="514")