- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to modify TCP WINDOWS value in HP-UX
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
12-14-2006 06:37 PM
12-14-2006 06:37 PM
How to modify TCP WINDOWS value in HP-UX
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2006 06:50 PM
12-14-2006 06:50 PM
Re: How to modify TCP WINDOWS value in HP-UX
For permanent changes add entries in /etc/rc.config.d/nddconf
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2006 06:53 PM
12-14-2006 06:53 PM
Re: How to modify TCP WINDOWS value in HP-UX
You can list the supported (configurable) parameters by using:
ndd -h sup
You can set them using:
ndd -set
To make the changes permanant add the changes to /etc/rc.config.d/nddconf.
HTH.
Andrew Y
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2006 08:37 PM
12-14-2006 08:37 PM
Re: How to modify TCP WINDOWS value in HP-UX
Use following command,
# ndd -set /dev/tcp
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2006 08:08 AM
12-15-2006 08:08 AM
Re: How to modify TCP WINDOWS value in HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2006 10:17 PM
12-15-2006 10:17 PM
Re: How to modify TCP WINDOWS value in HP-UX
tcp_xmit_hiwater_def
tcp_recv_hiwater_def
The default is 32K.
The best way to change the transmit and receive socket sizes is for the application to handle it using setsockopt() calls for the SO_SNDBUF and SO_RCVBUF settings, because changing the system default will use the larger buffers even for applications that don't need them. But if the application code can't be changed, and it doesn't already use the call to set a small buffer size, this parameter is an alternative.
The application will have to be retarted to take advantage of the new sizes, i.e., they only apply to new sockets.
Hope this helps. If you are using a high speed link like hyperfabric or infiniband, look at tcp_xmit_hiwater_lfp and tcp_recv_hiwater_lfp instead.
lfp = Long Fat Pipe.