Blame extensions/libxt_TRACE.man

Packit Service d1fe03
This target marks packets so that the kernel will log every rule which match 
Packit Service d1fe03
the packets as those traverse the tables, chains, rules. It can only be used in
Packit Service d1fe03
the
Packit Service d1fe03
.BR raw
Packit Service d1fe03
table.
Packit Service d1fe03
.PP
Packit Service d1fe03
With iptables-legacy, a logging backend, such as ip(6)t_LOG or nfnetlink_log,
Packit Service d1fe03
must be loaded for this to be visible.
Packit Service d1fe03
The packets are logged with the string prefix:
Packit Service d1fe03
"TRACE: tablename:chainname:type:rulenum " where type can be "rule" for 
Packit Service d1fe03
plain rule, "return" for implicit rule at the end of a user defined chain 
Packit Service d1fe03
and "policy" for the policy of the built in chains. 
Packit Service d1fe03
.PP
Packit Service d1fe03
With iptables-nft, the target is translated into nftables'
Packit Service d1fe03
.B "meta nftrace"
Packit Service d1fe03
expression. Hence the kernel sends trace events via netlink to userspace where
Packit Service d1fe03
they may be displayed using
Packit Service d1fe03
.B "xtables-monitor --trace"
Packit Service d1fe03
command. For details, refer to
Packit Service d1fe03
.BR xtables-monitor (8).