- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ndd parameters
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-14-2002 07:18 AM
10-14-2002 07:18 AM
How do I list all the values of my ndd parameters?
Second part, is there any good documentation or resorces besides the ndd help on what these ndd parameters do and how to tune them?
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 07:26 AM
10-14-2002 07:26 AM
Re: ndd parameters
try:
ndd -h
then
ndd -get
HTH
Regards,
Bernhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 07:33 AM
10-14-2002 07:33 AM
Re: ndd parameters
i dont know a command that can give you all the vaule but you can use the command :
ndd -h to get all the params that ndd have and you can also write a smapp script that will take all hte info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 07:33 AM
10-14-2002 07:33 AM
Re: ndd parameters
ndd -h
As far as what they do and how to tune them, I have always felt that if I don't know the acronyms, I shouldn't be messing with them. Nework tuning is best left to the networking gurus, because the defaults are very good only in rare extremem cases of a messed up LAN should they be tuned. And ususlly only with the help of a network sniffer and someone eminently qualified to decypher the results of the probe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 07:37 AM
10-14-2002 07:37 AM
Re: ndd parameters
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 07:38 AM
10-14-2002 07:38 AM
Re: ndd parameters
if you have a que about sepacial param you can ask over here and i will give you some guide lines about .
the command param htat every body change is :
tcp_keepalive_interval
Supported for 11.0
Supported for 11i
The parameter tcp_keepalive_interval determines the amount of time that TCP waits for an idle connection with no unacknowledged data before sending keepalive packets.
If the remote does not acknowledge the keepalive packet, TCP will use one of the following retransmission timers and terminate the connection when it elapses as follows:
Established connection tcp_ip_abort_interval
Connection establishment tcp_ip_abort_cinterval
Connection terminating tcp_keepalive_detached_interval
The timer itself restarts every time TCP sends or receives a packet.
So, when no activity is seen on the connection, the time will increase until the timer value reaches tcp_keepalive_interval.
When the timer values reaches tcp_keepalive_interval, KEEPALIVE 'probe' packet is sent to the other side and the other timer starts.
The 'probe' packet is retransmitted if no ACK comes. The retransmission happens in the same way as normal TCP data retransmission policy using exponential backoff algorithm. When the other timer's value reaches tcp_ip_abort_interval during the retransmission, the connection will be terminated silently
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 07:43 AM
10-14-2002 07:43 AM
Re: ndd parameters
good help is man ndd
you can go this site :
http://www.docs.hp.com/hpux/onlinedocs/B2355-90681/B2355-90681.html
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 07:47 AM
10-14-2002 07:47 AM
Re: ndd parameters
Why dont you use lanadmin
#lanscan
locate NMID number
#lanadmin -x
Kind regards,
RJ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 12:47 PM
10-15-2002 12:47 PM
Re: ndd parameters
the tcp_keepalive_interval change for ndd would only affect those applications that have used setsockopt() to set SO_KEEPALIVE.
an unofficial resource for ndd settings can be found at:
ftp://ftp.cup.hp.com/dist/networking/briefs/
look for the annotated_ndd.txt file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 01:05 PM
10-15-2002 01:05 PM
Re: ndd parameters
for PARAM in $(ndd -h |grep "_"|awk '{print $1}')
do
SUB=$(echo $PARAM|awk '{FS="_";print $1}')VALUE=$(ndd -get /dev/${SUB} $PARAM)
echo $SUB:$PARAM = $VALUE
done
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 01:09 PM
10-15-2002 01:09 PM
Solutionfor PARAM in $(ndd -h |grep "_"|awk '{print $1}')
do
SUB=$(echo $PARAM|awk '{FS="_";print $1}')
VALUE=$(ndd -get /dev/${SUB} $PARAM)
echo $SUB:$PARAM = $VALUE
done
I wouldn't try to dump the output into a file.
-Sri