我有一个新安装的 debian buster/10,我想查看 iptables TRACE 日志,所以我添加了 iptables 的原始 TRACE 规则:
iptables -t raw -A PREROUTING -j TRACE
我根据这个页面设置了这个:
modprobe nf_log_ipv4
sysctl net.netfilter.nf_log.2=nf_log_ipv4
但是我在 syslog、kern.log 或消息中仍然没有 TRACE 日志,-j LOG 有效。并且“ xtables-monitor -t ”可以显示TRACE 包。
# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 10 (buster)
Release: 10
Codename: buster
# uname -a
Linux debian 4.19.0-10-amd64 #1 SMP Debian 4.19.132-1 (2020-07-24) x86_64 GNU/Linux
# iptables --version
iptables v1.8.2 (nf_tables)
# lsmod | grep xt_
xt_LOG 16384 0
xt_TRACE 16384 0
xt_mark 16384 3
xt_TPROXY 16384 2
nf_tproxy_ipv6 16384 1 xt_TPROXY
nf_tproxy_ipv4 16384 1 xt_TPROXY
xt_nat 16384 5
nf_nat 36864 2 nf_nat_ipv4,xt_nat
xt_addrtype 16384 2
xt_tcpudp 16384 10
xt_conntrack 16384 3
nf_conntrack 172032 6 xt_conntrack,nf_nat,ipt_MASQUERADE,nf_nat_ipv4,xt_nat,nf_conntrack_netlink
nf_defrag_ipv6 20480 2 nf_conntrack,xt_TPROXY
nf_defrag_ipv4 16384 2 nf_conntrack,xt_TPROXY
x_tables 45056 11 xt_conntrack,nft_compat,xt_TRACE,xt_LOG,xt_tcpudp,ipt_MASQUERADE,xt_addrtype,xt_nat,xt_TPROXY,ip_tables,xt_mark
# lsmod | grep log
nft_log 16384 0
nfnetlink_log 20480 0
nf_log_ipv4 16384 0
nf_log_common 16384 1 nf_log_ipv4
nf_tables 143360 303 nft_chain_route_ipv4,nft_compat,nft_log,nft_chain_nat_ipv4,nft_counter
nfnetlink 16384 5 nft_compat,nf_conntrack_netlink,nf_tables,nfnetlink_log
我错过了什么?谢谢你。