- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Parameters TCP
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
03-23-2004 04:00 AM
03-23-2004 04:00 AM
R1 on HP-UX.
Oracle Support recommends to me , set these values:
tcp_time_wait_interval set to 60000 (default)
tcp_xmit_hiwater_def set to 65536 (default 32768)
tcp_recv_hiwater_def set to 65536 (default 32768)
tcp_conn_request_max set to 10240 (default 4096)
tcp_syn_rcvd_max set to 10240
Questions:
=========
1.- It's well fixed?
2.- What is repercussions in the performace?
3.- Any conclusions of the problem ?
Thanks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2004 08:46 AM
03-23-2004 08:46 AM
Re: Parameters TCP
ndd -h tcp_xmit_hiwater_def
tcp_xmit_hiwater_def:
The amount of unsent data that triggers write-side flow control.
[4096,-] Default: 32768 bytes
If your network is backing up so that you reach the default limit then you either need a lot more bandwidth or there is a problem such as a duplex mismatch or noisy cable.
You might look at
netstat -s
to see if you see any sign that possible connections are being dropped or if you have a lot of retransmissions or other signs of a bad network.
Also
lanadmin
lan
display
(look on the second page for errors)
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2004 11:29 AM
03-23-2004 11:29 AM
Re: Parameters TCP
You tend to get this state when the client closes the connection abnormally without sending a termination to the server side.
Col.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 02:11 AM
03-24-2004 02:11 AM
Re: Parameters TCP
Will it my problem ?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 02:29 AM - last edited 4 weeks ago by Parvez_Admin
03-24-2004 02:29 AM - last edited 4 weeks ago by Parvez_Admin
Re: Parameters TCP
Hi Marcial,
I have a annotated ndd document, perhaps it can help you a bit.
Roland
Document is attached!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 03:05 AM
03-24-2004 03:05 AM
Re: Parameters TCP
What is the values maxim allowed of tcp_syn_rcvd_max?
10240 ?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 03:17 AM
03-24-2004 03:17 AM
Re: Parameters TCP
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 03:19 AM
03-24-2004 03:19 AM
Re: Parameters TCP
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 05:07 AM
03-24-2004 05:07 AM
SolutionIn the past, Oracle has had this habit of confusing HP-UX and Solaris ndd settings.
Other than that, the parms shouldn't harm anything. Setting the default TCP window size to 64KB will help with bulk transfers over longer distances and will also help with connections over GbE - the bandwidth delay product for local GbE is greater than 32768 bytes.
As for FIN_WAIT_2 connections, if one has to set the explicit FIN_WAIT_2 timer, it suggests buggy applications. If an application calls shutdown(SHUT_WR), FIN_WAIT_2 is a perfectly valid receive-only state.
Now, it could be the case that the remote is buggy because it is using a RST. Or it could be that the remote could have simply gone poof. Indeed, that could leave a FIN_WAIT_2 state indefinitely.
However, if the application has only called shutdown(SHUT_WR), then _it_ should be running a timer - only the application can reliably decide how long is too long to not receive anything on a recv-only connection. TCP has no way to know that. That is why I consider the fine_wait timeout to be a kludge.
If an application calls close(), then TCP on HP-UX 11 will automagically enable a keepalive probe after tcp_keepalive_detatched_interval time units. If the remote TCP does not respond within tcp_ip_abort_interval time units, the connection will be terminated. If the remote does respond, it means the remote application has not called close(). That too then is an application issue that needs to be resolved - it means that the applications have a broken shutdown sequence.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 11:16 AM
03-24-2004 11:16 AM
Re: Parameters TCP
As for FIN_WAIT_2 connections, if one has to set the explicit FIN_WAIT_2 timer, it suggests buggy applications. If an application calls shutdown(SHUT_WR), FIN_WAIT_2 is a perfectly valid receive-only state.
You mean we can actually GET an application which is NOT buggy???
:-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 12:02 PM
03-24-2004 12:02 PM
Re: Parameters TCP
I just don't like seeing kludges being put into the stack to cover the backsides of broken apps...