- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ndd command
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
Discussions
Discussions
Discussions
Forums
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
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-19-2005 05:25 PM
тАО12-19-2005 05:25 PM
ndd command
i m confused in network parameter . is it same with network configuration?
i heard from one of friend is that "ndd" command is used for setting network parameter . is it for parmanent configuration? what is the configuration file for network parameter
Mridul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2005 05:37 PM
тАО12-19-2005 05:37 PM
Re: ndd command
Ndd is a tool for configuring parameters specific to networking. There are many ndd-configurable parameters, although these are not the same as other kernel parameters that are set via adb or kctune.
If you heard about an ndd tunable parameter and you wish to set it at boot time, you can use the /etc/rc.config.d/nddconf file to configure this parameter to be set at system boot. You can also use the ndd command to manually set the parameter to a specific value while the system is running.
Do you have a question about a specific ndd parameter or are you asking about how to use the ndd command itself?
If you have questions about using ndd you can reference the ndd man page or documents on the docs.hp.com web site.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2005 05:38 PM
тАО12-19-2005 05:38 PM
Re: ndd command
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=17173
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2005 05:42 PM
тАО12-19-2005 05:42 PM
Re: ndd command
file /etc/rc.config.d/nddconf holds the setting information.
ndd -h supported
ndd -h unsupported
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2005 06:44 PM
тАО12-19-2005 06:44 PM
Re: ndd command
see nddconf file and ndd man page.
-Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-19-2005 07:13 PM
тАО12-19-2005 07:13 PM
Re: ndd command
1. Use command
# ndd -set /dev/tcp tcp_time_wait_interval 60000
#ndd -set /dev/tcp keep_alive_interval 3600000 ===> Setting
#ndd -get /dev/tcp tcp_time_wait_interval
#ndd -get /dev/tcp keep_alive_interval ===> Confirm
2. Use file edit
# vi /etc/rc.config.d/nddconf
TRANSPORT_NAME[0]=tcp
NDD_NAME[0]=tcp_time_wait_interval
NDD_VALUE[0]=60000
TRANSPORT_NAME[1]=tcp
NDD_NAME[1]=keep_alive_interval
NDD_VALUE[1]=3600000
.
.
.