Last active
January 18, 2017 17:50
-
-
Save velizarn/82b906f6c05ee7ddea831d7db7fcdb98 to your computer and use it in GitHub Desktop.
Log iptables messages in a custom file with rsyslog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
IPTABLES_CONF_FILE=/etc/rsyslog.d/iptables.conf | |
echo ':msg, contains, ": IPTables Packet Dropped: " /var/log/iptables.log' > $IPTABLES_CONF_FILE | |
echo ':msg, contains, ": IPTables Packet Dropped: " ~' >> $IPTABLES_CONF_FILE | |
systemctl restart rsyslog | |
# http://blog.stalkr.net/2009/10/logging-iptables-messages-with-rsyslog.html | |
# | |
# How to Log iptables messages with rsyslog? | |
# To do this, just create /etc/rsyslog.d/iptables.conf with the following content... | |
# Reload rsyslog and you're done | |
# sudo systemctl restart rsyslog | |
# sudo service rsyslog status | |
# sudo nano /var/log/iptables.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment