Maybe I have older kernel (2.4.20) in newer kernel every value have own file in directory /proc/sys/net/ipv4/netfilter
Home in my notes I found:
EXPLANATION:
300 600 120 60 120 120 10 60 30 120
NONE = 300 (5 minutes)
ESTABLISHED = 600 (10 minutes)
SYN_SENT = 120 (2 minutes)
SYN_RECV = 60 (60 seconds)
FIN_WAIT = 120 (2 minutes)
TIME_WAIT = 120 (2 minutes)
CLOSE = 10 (10 seconds)
CLOSE_WAIT = 60 (60 seconds)
LAST_ACK = 30 (30 seconds)
LISTEN = 120 (2 minutes)
so NONE is ip_conntrack_tcp_timeout_established
echo 300 > /proc/sys/net/ipv4/netfilter/ip_conntrack_tcp_timeout_established
This means than NEW connections have 5 minutes timeout, so existing connections stay with previous settings.
wc -l /proc/net/ip_conntrack
give you number of records in conntrack table