- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Any RedHat linux command equivalent to HP's nd...
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
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
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
тАО07-10-2001 10:08 PM
тАО07-10-2001 10:08 PM
Does anyone know is there any command in Redhat linux has the same function as HP's ndd command as I want to have some network tuning on Linux.
Many thanks,
Patrick
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2001 04:18 AM
тАО07-12-2001 04:18 AM
Re: Any RedHat linux command equivalent to HP's ndd command
Check it out
Sundar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-13-2001 10:31 AM
тАО07-13-2001 10:31 AM
SolutionIn Linux, using /proc filesystem is the "official" method for advanced tuning.
Tunable networking parameters are located under /proc/sys/net.
2 ways to use this :
-> You can write something like this :
echo "900" >/proc/sys/net/ipv4/tcp_keepalive_time
-> You can use the /sbin/sysctl command to do the same thing. Check the syntax of /etc/sysctl.conf, then add your parameters accordingly, and finally call "sysctl -p /etc/sysctl.conf" to apply changes.
Remark : it is not recommended to change parameters on live systems, except if you know the exact meaning of the parameters being changed.
Therefore, the best method is to set these parameters during the system boot process.
Using RedHat Linux, this has already been done for you. The script involved is /etc/rc.d/rc.sysinit, which calls sysctl with /etc/sysctl.conf.
Last thing (but not least) : there is a GTK-frontend (Powertweak) that you can use for browsing the parameters and writing them in /etc/sysctl.conf : in graphical environment, just type /sbin/sysctlconfig.
Good luck.
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2001 06:49 PM
тАО07-15-2001 06:49 PM
Re: Any RedHat linux command equivalent to HP's ndd command
Your answer is helpful to me. But I want to know whether the unit of 900 is equal to second or not !
Thanks,
Patrick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-27-2001 02:02 PM
тАО07-27-2001 02:02 PM
Re: Any RedHat linux command equivalent to HP's ndd command
Sorry for this late answer.
Actually "900" stands for "900 seconds".
To have a detailed list of tunables, if you have kernel sources installed in your system check in /usr/src/linux/Documentation/networking/ip-sysctl.txt.
Otherwise :
http://www.linuxhq.com/kernel/v2.4/doc/networking/ip-sysctl.txt.html
Good luck.
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-27-2001 03:27 PM
тАО07-27-2001 03:27 PM
Re: Any RedHat linux command equivalent to HP's ndd command
The URL is good for me ! Thanks for your great help !
Regards,
Patrick