net.ipv4.tcp_tw_reuse and nat network

In the past days, we always modify sysctl.conf:

net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_tw_reuse = 1

to increase the linux network performance

someday, we found that, in our company,
somebody can connect to the host, somebody can not

After just fucking goole it:

RFC1323 – TCP Extensions for High Performance
http://tools.ietf.org/html/rfc1323#page-29
http://tools.ietf.org/html/rfc1323#page-17

A guy write an article to discuss this mechanism

http://phrack.org/issues.html?issue=63&id=3#article

So, how to resolve this problem? mm, just set:

net.ipv4.tcp_tw_recycle = 0

in sysctl.conf and run sysctl -p to make it active


http://www.sysadmin.im/2011/06/07/16.html


你可能感兴趣的:(Linux)