search for: nf_conntrack_untracked

Displaying 1 result from an estimated 1 matches for "nf_conntrack_untracked".

2007 Jan 09
0
[Bug 530] New: loading nf_nat verision of the iptable_nat module kills existing connections
...ition 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: return NF_DROP; If I read this correctly, packets for connections which aren't tracked at all are accepted, but packets for connections whic...