CentOS 6 下單獨記錄 iptables 日誌

1. First, add a new chain with a reasonable name:
app

iptables -N LOGGINGide


2. Next, insert a rule at the appropriate point (hence me using --line-numbers above). You could replace the existing REJECT at line 5 in its entirety as its functionality will be moved into the LOGGING chain (where I change it to a DROP anyway):spa

wKiom1d4h1vCJA1OAAF95dhUPJ4791.jpg

iptables -I INPUT 5 -j LOGGINGdebug


3. Add the actual logging rule nextrest

iptables -A LOGGING  -j LOG --log-prefix "DROP: " --log-level 7code

iptables -A LOGGING -j DROPblog

service iptables saveip

service iptables restart
get

wKiom1d4iNGzFVhIAAH_v_nkipc207.jpg


4. vi /etc/rsyslog.confit

kern.debug                        /var/log/iptables.log


service rsyslog restart


5. vi /etc/logrotate.d/syslog

add /var/log/iptables.log to list of filenames

相關文章
相關標籤/搜索