Linux

使用帶有 ndpi 的 iptables 日誌文件配置協議

  • January 17, 2014

我正在使用帶有 ndpi 的 iptables 來過濾我的網路並將兩個規則添加到我的 iptables 規則中

他們是

iptables -I INPUT -m ndpi --http -j LOG
iptables -I INPUT -m ndpi --google -j LOG

在我的日誌文件中,我無法配置哪個日誌用於 http 和 google 協議

您可以用 區分您的日誌條目--log-prefix。例如:

iptables -I INPUT -m ndpi --google -j LOG --log-prefix "iptables INPUT: User went to Google: "

請記住在前綴文本的末尾留一個空格,因為它是按原樣添加的。

引用自:https://serverfault.com/questions/567894