Displaying 1 result from an estimated 1 matches for "nfct_nat".
Did you mean:
nf_nat
2007 Jan 09
0
[Bug 530] New: loading nf_nat verision of the iptable_nat module kills existing connections
...poked around a bit and this section of nf_net_standalone.c appears to
be the culprit:
120: /* Don't try to NAT if this packet is not conntracked */
121: if (ct == &nf_conntrack_untracked)
122: return NF_ACCEPT;
123:
124: nat = nfct_nat(ct);
-> 125: if (!nat)
-> 126: return NF_DROP;
If I read this correctly, packets for connections which aren't tracked
at all are accepted, but packets for connections which are being tracked
don't have NAT information are dropped.
Is there any reaso...