Hi, I need to run a proxy server for my IoT devices; I need 1 TCP/IP socket per device; What is max # of sockets I can open on a single droplet? My tests point at a number of about 2K?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hello @elkangler
2000 connections should be totally okay (if the droplet has the necessary resources to handle the traffic)
Another thing to mention is that you might need to edit the
/etc/sysctl.conf
file to allow that many TCP connections as this might be limited to a lower value by default.Regards
Hi there,
I think that 2000 TCP/IP sockets should be doable, you will be quite far from the standard port range limit, eg. from port 1024 to 49151.
So as long as you have enough resources on the server for all of your 2k services it should be ok I believe.
Best,
Bobby