- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: tcp_conn_request_max
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 03:58 AM
05-14-2003 03:58 AM
tcp_conn_request_max
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 04:31 AM
05-14-2003 04:31 AM
Re: tcp_conn_request_max
I think you've confused socket and port - there are 65535 ports (1 -> 65535 where 80==http, 25=smtp, etc.).
As you note, a socket is essentially a file descriptor, so the number of sockets is (in part) limited to the number of available file descriptors.
There can [will] be more than one socket per listening port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 05:39 AM
05-14-2003 05:39 AM
Re: tcp_conn_request_max
Yes thanks for that, ports specification upper limit by IANA is 65535. Sockets are everything in Unix..files etc. System resources will be the factor before the upper port range ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 12:59 AM
05-15-2003 12:59 AM
Re: tcp_conn_request_max
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 09:20 AM
05-15-2003 09:20 AM
Re: tcp_conn_request_max
Also, indeed the maximum number of file descriptors per process and/or per system will likely be the first limit.
TCP connections are "named" by the four-tuple of local/remote IP, local/remote port number. IPs (v4 anyway are 32-bits, port numbers are 16 bits. So, if we fix the local IP/port numbers, that means that in theory there can be as many as ~2^32*2^16 TCP connections with that local IP address and port. Now, if only connect to one remote IP address, then the limit becomes simply ~2^16.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 09:28 AM
05-15-2003 09:28 AM
Re: tcp_conn_request_max
Thanks, That may be were it originated from, I got that from a GSE site & since it was cu. viewable info I posted it in response to a forums questions..I posted it by mistake as a new post instead of a reply :-).
Todd