- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- TCP tuning
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-01-2004 09:11 AM
11-01-2004 09:11 AM
TCP tuning
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2004 09:18 AM
11-01-2004 09:18 AM
Re: TCP tuning
You can use ndd to finetune tcp parameters.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90681/B2355-90681_top.html&con=/hpux/onlinedocs/B2355-90681/00/02/215-con.html&toc=/hpux/onlinedocs/B2355-90681/00/02/215-toc.html&searchterms=ndd&queryid=20041101-151756
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2004 09:23 AM
11-01-2004 09:23 AM
Re: TCP tuning
The command 'ndd' will help you with finetuning. 'ndd -h' will give you all parameters that can be tuned. You decide on what to modify. These are what I presently configure on my systems mostly for security purposes rather than performance.
Transport Parameter Value
IP ip_forwarding 0
ip_ire_gw_probe 0
ip_pmtu_strategy 1
ip_send_redirects 0
ip_send_source_quench 0
ip_check_subnet_addr 0
ip_respond_to_echo_broadcast 0
ip_respond_to_timestamp_broadcast 0
ip_respond_to_address_mask_broadcast 0
TCP
tcp_conn_strategy 0
tcp_text_in_resets 0
tcp_conn_request_max 4096
tcp_fin_wait_2_timeout 1200000
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2004 09:38 AM
11-01-2004 09:38 AM
Re: TCP tuning
For ndd, I generally get full system info using:
for i in $( ndd -get /dev/tcp ? | awk '{ print $1 }' )
do
echo $i
ndd -get /dev/tcp $i
done
Some of this will come back with error, but otherwise it will give you full tcp settings for the system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2004 10:06 AM
11-01-2004 10:06 AM
Re: TCP tuning
Also, here is a good link ( http://www.sean.de/Solaris/soltune.html ) for solid info on most tcp/ip parameters. It is Solaris specific, but most of the information is applicable to HP-UX as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2004 04:40 PM
11-01-2004 04:40 PM
Re: TCP tuning
After long time .. !!!
You can use "netstat" command to monitor network status.
For sockects in particular use "netstat -a".
See man netstat for more details.
For viewing TCP parameters use:
# ndd -get /dev/tcp
For setting the same use
# ndd -set /dev/tcp
See man ndd and man nddconf.
Hope that helps.
Regards,