Displaying 1 result from an estimated 1 matches for "nf_net_standalone".
2007 Jan 09
0
[Bug 530] New: loading nf_nat verision of the iptable_nat module kills existing connections
...hen I load the iptable_nat module, all
existing connections stop working, as if the packets are being dropped.
This is somewhat irritating since the root partition of the machine in
question is mounted via NFS and, or course, that stops working.
I've 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:...