Hi, I have switched almost a month ago to kernel-2.4.18 (from 2.4.8) with netfilters (cvs update around 2002/04/31) 'newnat'. >From that moment on I got dropped packets on excisting tcp connectings. After I added logging of NEW tcp connections, I saw something strange that I think comes from ip_conntrack.
I'm using conntrack-state to filter my packets. A simple version of my rules look like this: iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT iptables -A OUTPUT -m state --state NEW -p tcp --destination-port 110 -j log+accept ... iptables -A OUTPUT -j log+drop iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT iptables -A INPUT -j log+drop What I see with ULOG is the following: +------+------------+------+------+-----------------+--------+-------+--------+-------+---------+-------+------------+------------+------------+---------+---------+ | id | prefix | in | out | time | saddr | sport | daddr | dport || ip_csum | ip_id | ip_fragoff | tcp_seq | tcp_ackseq | tcp_ack | tcp_syn | +------+------------+------+------+-----------------+--------+-------+--------+-------+---------+-------+------------+------------+------------+---------+---------+ | 8603 | ACCEPT-NEW | | eth1 | 18:38:10.389606 | client | 38136 | server | 110 || 0 | 0 | 0 | 4080432246 | 0 | NULL | 1 | | 8604 | ACCEPT-NEW | | eth1 | 18:38:10.389606 | client | 38136 | server | 110 || 21509 | 13068 | 0 | 4080432246 | 0 | NULL | 1 | | 8605 | DROPPED | eth1 | | 18:38:10.397096 | server | 110 | client | 38136 || 62367 | 56184 | 16384 | 3577899487 | 4080432247 | 1 | NULL | | 8606 | ACCEPT-NEW | | eth1 | 18:38:16.389606 | client | 38136 | server | 110 || 21508 | 13069 | 0 | 4080432246 | 0 | NULL | 1 | | 8607 | DROPPED | eth1 | | 18:38:16.403816 | server | 110 | client | 38136 || 62365 | 56186 | 16384 | 3577899487 | 4080432247 | 1 | NULL | | 8608 | ACCEPT-NEW | | eth1 | 18:39:55.286423 | client | 38137 | server | 110 || 1024 | 0 | 0 | 4184019953 | 0 | NULL | 1 | +------+------------+------+------+-----------------+--------+-------+--------+-------+---------+-------+------------+------------+------------+---------+---------+ All other fields are equal. What I find strange is that it starts with 2 almost the same packets (except for ip_id), and that they both get the conntrack state NEW! And that the first response (I think) does not get the conntrack state ESTABLISHED because it's dropped! And a few seconds later it happens again (normally it not happens agian on the same connecting). I see no syslog-messages at that time. I think there is a problem in conntrack, maybe the newnat patch or the "double packet" is introduced in the kernel. Can someone tell me what is going wrong, and/or how to solve it. -- Andries van Schie Let's make the linux-world a safer place to live in ;-)