Skip to content

Instantly share code, notes, and snippets.

@carlos8f
Last active September 5, 2020 15:44
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save carlos8f/3473107 to your computer and use it in GitHub Desktop.
Save carlos8f/3473107 to your computer and use it in GitHub Desktop.
siege Mac OS X caveats
Mac OS X has only 16K ports available that won't be released until socket
TIME_WAIT is passed. The default timeout for TIME_WAIT is 15 seconds.
Consider reducing in case of available port bottleneck.
You can check whether this is a problem with netstat:
# sysctl net.inet.tcp.msl
net.inet.tcp.msl: 15000
# sudo sysctl -w net.inet.tcp.msl=100
net.inet.tcp.msl: 15000 -> 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment