** Reply to message from hyooga <[EMAIL PROTECTED]> on Wed, 06 Mar 2002 09:50:21 -0600
> Hi all, > > I would like to know what could cause this problem to occur: > > "ip_conntrack: table full, dropping packet" > > I am receiving this message sometimes, but not all the time. Is there a way > to increase the limit or if so, is there a side effect on it? You are low on your conntrack limit. Increase it by doing: echo 16384 > /proc/sys/net/ipv4/ip_conntrack_max Then add to your /etc/sysctl.conf: #Set ip_conntrack_max net.ipv4.ip_conntrack_max = 16384 so it gets set on each reboot. An increased max eats up a bit more RAM but you likely won't notice. jb