CentOS 6 下单独记录 iptables 日志

前端之家收集整理的这篇文章主要介绍了CentOS 6 下单独记录 iptables 日志前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

iptables -N LOGGING


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):

wKiom1d4h1vCJA1OAAF95dhUPJ4791.jpg

iptables -I INPUT 5 -j LOGGING


3. Add the actual logging rule next

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

iptables -A LOGGING -j DROP

service iptables save

service iptables restart

wKiom1d4iNGzFVhIAAH_v_nkipc207.jpg


4. vi /etc/rsyslog.conf

kern.debug/var/log/iptables.log


service rsyslog restart


5. vi /etc/logrotate.d/syslog

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

原文链接:/centos/381758.html

猜你在找的CentOS相关文章