Hello,
G. a écrit :
>
> RH Fedora 6. iptables is used to packet filtering.
>
> The problem is, that conntrack is built in standard Fedora kernel. It
> causes that started iptables filters all incoming packets. My server
> do not response on any port. It takes a while and then is works
> properly. In a couple of minutes it hangs (incoming connections) once
> again. Round Robin.
Did you check that the conntrack table size is big enough for the number
of connections that your server handles ?
> This effect ic caused by conntrack.
Conntrack alone does not filter anything. It only maintains some
information about packets and connections used by filtering rules and
NAT operation. If the filtering rules do not make use of conntrack-based
matches, conntrack has no effect on packet filtering.
> How to switch conntrack without kernel recompilation? Is it possible?
If your kernel version is at least 2.6.6, you can use the NOTRACK target
in the 'raw' table to disable connection tracking of matching packets.
Matching packets will then have the UNTRACKED state. But, depending on
your iptables ruleset, this may not have the result that you expect.
|