- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- maximum number of tcp connection
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-13-2003 07:00 PM
05-13-2003 07:00 PM
maximum number of tcp connection
tcp_conn_request_max is only set to 20 by default. I was surprise the number is so low. I think solaris by default is 1024. Is this parameter is for tcp connection that is pending.
Just wondering how to find out the maximum number of established connection?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2003 07:13 PM
05-13-2003 07:13 PM
Re: maximum number of tcp connection
Have a look at this posting. It provides some valuable information.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xd8f8227a4bc6d611abdb0090277a778c,00.html
Regards
Michael
"When I have trouble spelling, it's called fat finger syndrome"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2003 07:50 PM
05-13-2003 07:50 PM
Re: maximum number of tcp connection
I think that doc id no longer valid.
So for maximum tcp established connection, what is the kernel parameter involved.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2003 08:01 PM
05-13-2003 08:01 PM
Re: maximum number of tcp connection
See this link, may help u.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xd8f8227a4bc6d611abdb0090277a778c,00.html
To know the established connections u can use lsof.
#lsof -i tcp
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2003 08:09 PM
05-13-2003 08:09 PM
Re: maximum number of tcp connection
# netstat -p tcp|grep queue
Mine is showing ..
0 connect requests dropped due to full queue.
Meaning I do not have to change anything and I believe my value is the default value (20). If you look (or search previous thread) you should be able to find the recipe on how to increase that value. Remember to edit /etc/rc.config.d/nddconf as well. As for the kernel params they are nfile and nproc (at least). Since both nfile and nproc is calculated from a formula that as maxusers in it, I believe increasing maxusers would bring their value up at the same time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2003 08:29 PM
05-13-2003 08:29 PM
Re: maximum number of tcp connection
I want to set the maximum number of tcp connection allowedd from the firewall.
That's why I need to determine the total number of connection capacity.
I will caculate capacity based on total number of established connection + total number of connection pending.