hello all,
having a bit of a problem logging firewall rules from a MT router.
I have a linux server running syslog to catch the firewall logs from the MT and I am getting the logs but they are being written to /var/log/messages. How do I set it up to log to a different file. Here is a sample of my syslog.conf file.
# 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
I have tried a bunch of different configurations to no avail.
Any help would be greatly appreciated.
Dan