- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: tcp_conn_request_max on hpux 11.23
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
10-04-2007 12:26 PM
10-04-2007 12:26 PM
tcp_conn_request_max on hpux 11.23
Somebody can tell me, if i have two net cards, the tcp_conn_request_max is for both??
This mean that for example this parameter is set on 4096, the listen queue is 4096 for both net cards or 4096 for every card??
Please help
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 02:28 PM
10-04-2007 02:28 PM
Re: tcp_conn_request_max on hpux 11.23
System-Wide Parameter.
1. Stop Application(s) --> IMPORTANT :)
2. ndd -set /dev/tcp tcp_conn_request_max 4096
3. Start Application(s)
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 02:30 PM
10-04-2007 02:30 PM
Re: tcp_conn_request_max on hpux 11.23
Edit /etc/rc.config.d/nddconf, add-in lines
TRANSPORT_NAME[n]=tcp
NDD_NAME[n]=tcp_conn_request_max
NDD_VALUE[n]=4096
NOTE: n = 0, 1, 2, 3, 4 ....
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 02:33 PM
10-04-2007 02:33 PM
Re: tcp_conn_request_max on hpux 11.23
Try to ensure the following OS Patches is installed before any changes:
PHKL_31500 s700_800 11.23 Sept04 base patch
PHNE_35117 s700_800 11.23 Kernel RPC cumulative patch
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 03:24 PM
10-04-2007 03:24 PM
Re: tcp_conn_request_max on hpux 11.23
if you run
#ndd -get /dev/tcp tcp_conn_request_max
what is your current value, i think 4096 is a default value for 4096 for 11.23
Hope it helps
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2007 05:35 AM
10-05-2007 05:35 AM
Re: tcp_conn_request_max on hpux 11.23
But i need know if this parameter is global or for every net card?...I want use 2 ned cards.
Please help.
Somebody has a hp manual?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2007 06:09 AM
10-05-2007 06:09 AM
Re: tcp_conn_request_max on hpux 11.23
In general, all tunable parameters are global,
i.e., they affect all instances of the network
module. Some settings take effect immediately,
while others are used to initialize data for an
instance and will only affect newly opened
streams.
Hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2007 07:15 AM
10-05-2007 07:15 AM
Re: tcp_conn_request_max on hpux 11.23
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2007 04:48 AM
10-08-2007 04:48 AM
Re: tcp_conn_request_max on hpux 11.23
It will though have an effect on any TCP listen endpoint created after the tune is applied - they will be able to have a queue of pending, but not yet "accept()'ed" connections of no more than the minimum of what the application passed-in in its call to listen() and tcp_conn_request_max.
There isn't really "one" listen queue - there is a listen queue for each socket against which an application has called listen().
If you wish to alter link-level (ie network interface more or less) parameters, that would be lanadmin.
What sort of situation has you wanting to alter tcp_conn_request_max? If we know that we might be able to help better.