Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save xuyanke/d56b89306a1b778db205 to your computer and use it in GitHub Desktop.
Save xuyanke/d56b89306a1b778db205 to your computer and use it in GitHub Desktop.
sudo vi /etc/sysctl.conf
# Add the following to sysctl.conf:
# Decrease TIME_WAIT seconds
net.ipv4.tcp_fin_timeout = 30
# Recycle and Reuse TIME_WAIT sockets faster
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_tw_reuse = 1
#reference http://www.linuxbrigade.com/reduce-time_wait-socket-connections/
# Lastly apply changes
sudo /sbin/sysctl -p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment