Estoy tratando de usar el objetivo TRACE de IPtables pero parece que no puedo registrar ninguna información de seguimiento. Quiero usar lo que se describe aquí: Depurador para Iptables .
Del hombre de iptables para TRACE:
This target marks packes so that the kernel will log every rule which match the packets as those traverse the tables, chains, rules. (The ipt_LOG or ip6t_LOG module is required for the logging.) The packets are logged with the string prefix: "TRACE: tablename:chain- name:type:rulenum " where type can be "rule" for plain rule, "return" for implicit rule at the end of a user defined chain and "policy" for the policy of the built in chains. It can only be used in the raw table.
Uso la siguiente regla: ¡ iptables -A PREROUTING -t raw -p tcp -j TRACE
pero no se agrega nada en / var / log / syslog o /var/log/kern.log!
¿Falta otro paso? ¿Estoy buscando en el lugar equivocado?
editar
Aunque no puedo encontrar entradas de registro, el objetivo TRACE parece estar configurado correctamente ya que los contadores de paquetes se incrementan:
# iptables -L -v -t raw
Chain PREROUTING (policy ACCEPT 193 packets, 63701 bytes)
pkts bytes target prot opt in out source destination
193 63701 TRACE tcp -- any any anywhere anywhere
Chain OUTPUT (policy ACCEPT 178 packets, 65277 bytes)
pkts bytes target prot opt in out source destination
editar 2
La regla iptables -A PREROUTING -t raw -p tcp -j LOG
hace la información del paquete de impresión en / var / log / syslog ... ¿Por qué no funciona TRACE?