- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: source quench while pinging in 11.x
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
12-02-2001 11:15 PM
12-02-2001 11:15 PM
Hi,
We have a two node cluster with and L-class and a D-class both are with HP-UX 11.00
The problem is that when you do a ping from any PCs it give the error " SOURCE QUENCH RECEIVED "
Can anybody help me to solve this.
Thanks in advance,
arjun
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 12:43 AM
12-03-2001 12:43 AM
Re: source quench while pinging in 11.x
The source quench benefits both the pinging client and the ping'ed server because it is the feedback by the server to client that it is receiving packets too fast, thus asking the client to slow down.
To disable it anyway (so that you don't see such messages), on the server, execute the following:
# ndd -set /dev/ip ip_send_source_quench 0
Hope this helps. Regards.
Steven Sim Kok Leong
Brainbench MVP for Unix Admin
http://www.brainbench.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 05:48 AM
12-03-2001 05:48 AM
Re: source quench while pinging in 11.x
Try this link below,
http://us-support.external.hp.com/cki/bin/doc.pl/sid=ea7d7d391bf6710eb9/screen=ckiDisplayDocument?docId=200000049809940
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 09:09 AM
12-03-2001 09:09 AM
Re: source quench while pinging in 11.x
Use the command "ndd" to disable the source quench messages.
#ndd -set /dev/ip ip_send_source_quench 0
Thanks.
Prashant Deshpande.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 09:29 AM
12-03-2001 09:29 AM
Re: source quench while pinging in 11.x
I had exactly the same problem with a few of our new HPUX11 servers. It seems to me that the default TCP / IP parameters are a bit mean to say the least. Although one post suggests disabling source_quench errors, I would recommend looking through your TCP / IP configuration and making a few ammendments. It should also be noted however that optimal settings should be based around what applications are running on your servers. If they are web based, your web server provider help page will usually shed some light.
I query all parameters as follows:
ndd -get /dev/tcp ? >> /tmp/options.out
for i in `pg /tmp/options.out |grep -v status |awk '{print $1}'`
do
echo $i \\c >> /tmp/current
ndd -get /dev/tcp $i >> /tmp/current
done
This *should* provide you with all the values for your current setup (TCP only) and should allow you to check them agains recommended settings.
A simple bodge of the above will also let you make changes dynamically, but remember to update your config files to make it perm. (/etc/rc.config.d/nddconf
)
ndd -c will load the nddconf files on the fly also, instead of changing the above.
Hope this is of some use!!!
-ChaZ-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 05:37 PM
12-03-2001 05:37 PM
SolutionYou can disable source quench in HP-UX 11.0 by executing this command:
ndd -set /dev/ip ip_send_source_quench 0
To disable Source Quench so that it can survive a reboot, modify the /etc/rc.config.d/nddconf file as follows :
TRANSPORT_NAME[X]=ip
NDD_NAME[X]=ip_send_source_quench
NDD_VALUE[X]=0
Where X is the next logical numerical sequence in a table of values, with X starting at 0.
hope this can help you.
regards,
Boja