speedy
10-17-2007, 12:53 PM
I see several of this in my firewall logs:
kernel: ip_conntrack: table full, dropping packet.
That means that your ip_conntrack table is full, you can review your table
with:
cat /proc/net/ip_conntrack
The max number of connections is set in
cat /proc/sys/net/ipv4/ip_conntrack_max
You can increase it with:
echo "some_number" > /proc/sys/net/ipv4/ip_conntrack_max
Which might resolve your problem.
kernel: ip_conntrack: table full, dropping packet.
That means that your ip_conntrack table is full, you can review your table
with:
cat /proc/net/ip_conntrack
The max number of connections is set in
cat /proc/sys/net/ipv4/ip_conntrack_max
You can increase it with:
echo "some_number" > /proc/sys/net/ipv4/ip_conntrack_max
Which might resolve your problem.
