Sto cercando di utilizzare il target TRACE di IPtables ma non riesco a ottenere alcuna traccia delle informazioni registrate. Voglio usare ciò che è descritto qui: Debugger per Iptables .
Dall'uomo iptables per 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 seguente regola: iptables -A PREROUTING -t raw -p tcp -j TRACE
ma nulla è aggiunto in / var / log / syslog o /var/log/kern.log!
Manca un altro passo? Sto guardando nel posto sbagliato?
modificare
Anche se non riesco a trovare le voci di registro, la destinazione TRACE sembra essere impostata correttamente poiché i contatori di pacchetti vengono incrementati:
# 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
modifica 2
La regola iptables -A PREROUTING -t raw -p tcp -j LOG
fa pacchetto di informazioni di stampa in / var / log / syslog ... Perché il lavoro non TRACE?