我正在使用 iptables 和 ndpi 来过滤我的网络,并向我的 iptables 规则中添加两条规则
他们是
iptables -I INPUT -m ndpi --http -j LOG
iptables -I INPUT -m ndpi --google -j LOG
在我的日志文件中,我无法配置哪个日志用于 http 和 google 协议
答案1
你可以使用 来区分你的日志条目--log-prefix
。例如:
iptables -I INPUT -m ndpi --google -j LOG --log-prefix "iptables INPUT: User went to Google: "
请记住在前缀文本末尾留一个空格,因为它是按原样添加的。