- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- TCP settings in HP
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
11-02-2003 03:16 PM
11-02-2003 03:16 PM
how to chg tcp_ip_abort_interval and tcp_keepalive_interval for HPUX11.11? Does it reflect to all interfaces both 100Mbps and Gigabit?
What does this two parameters do?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2003 03:27 PM
11-02-2003 03:27 PM
Re: TCP settings in HP
# ndd -h supported
# ndd -h tcp_ip_abort_interval
# ndd -h tcp_keepalive_interval
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2003 03:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 06:25 AM
11-04-2003 06:25 AM
Re: TCP settings in HP
Any particular reason you feel you need to alter those parameters?
Ndd settings for TCP will affect _all_ TCP communications, regardless of interface.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 01:30 PM
11-04-2003 01:30 PM
Re: TCP settings in HP
we have iplanet webserver error logs saying insufficient resources with oserr=233. someone do an investigation and mentioned that beside increasing the buffercache we may also need to tune these to parameters
to 60000 and 900000 respectively.
Do you think it will help?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 04:43 AM
11-05-2003 04:43 AM
Re: TCP settings in HP
what they will affect (possibly) is how many file descriptors iplanet is tracking at any one time. shortening those settings may cause TCP to cull connections more quickly - and perhaps cull some otherwise good connections.
to get an idea of whether or not iplanet is indeed being hampered by "decaying" connections, you might look at the output of netstat -p tcp and see how many, if any, connections are being dropped by rexmit timeout. compare that to the totcal number of connections and such. that will tell you how many connections are being closed by reaching tcp_ip_abort_interval - either during normal data transfer, or after tcp_keepalive_interval has been reached. what it will not include will be those ocnnections aborted because the system received a RST in response to a keepalive probe.
another way to go about it would be to run tusc against one or more of the iplanet processes, have tusc only trace the socket and close system calls, and have it include timestamps. you can then do a bit of scripting to measure how long connections remain open and see the distribution. if you are going to include connections dropped by keepalive and such, the tusc trace will need to be rather longer than tcp_keepalive_interval+tcp_ip_abort_interval.
whether or not you have sufficient CPU to permit that I have no idea - that will have to be your call.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 12:01 PM
11-05-2003 12:01 PM
Re: TCP settings in HP
thanks Rick for the advice, I will investigate further.