- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Source Quench Received
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
04-03-2003 12:09 PM
04-03-2003 12:09 PM
Source Quench Received
interfases, received the message:
Source Quench Received
How can i correct this situation?
Is there some potential network or interfase problem?
Best Regards
Alexander Santamaria
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 12:16 PM
04-03-2003 12:16 PM
Re: Source Quench Received
It isn't a big problem. You are seeing that message because the ICMP protocol is busy for that interface, and it is a way for it to do some flow control and politely say, "Leave me alone, I'm busy.". It is a old protocol, and you can turn it off using the 'ndd' command in HP-UX 11.X. Just try this:
ndd -get /dev/ip ip_send_source_quench
If it returns a 1, you have source quench turned on. You can do this:
ndd -set /dev/ip ip_send_source_quench 0
to turn it off. That setting will last until you reboot. If you want to keep the change, you'll have to put it in the in /etc/rc.config.d/nddconf file.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 12:21 PM
04-03-2003 12:21 PM
Re: Source Quench Received
Generally this represents a full-buffer condition. The sender should slow the rate of delivery to the socket in question. Have a look at Technical Knowledge Base document #S3100005739 for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 12:44 PM
04-03-2003 12:44 PM
Re: Source Quench Received
http://www.faqs.org/rfcs/rfc792.html
Berlene
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 01:05 PM
04-03-2003 01:05 PM
Re: Source Quench Received
Thanks for your responses
I can't find the S3100005739 document if
somebody has it can you send to me as an
attachment
Best Regards
Alexander Santamaria
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 04:13 PM
04-03-2003 04:13 PM
Re: Source Quench Received
I had not trouble finding it. Instead of searching for the document number use 'source quench'
HTH
Michael
PROBLEM
Upon pinging an 11.0 system, I am seeing a packet loss and Internet
Control Message Protocol (ICMP) source quench messages.
Why am I getting these messages?
CONFIGURATION
Operating System - HP-UX
Version - 11.0
Subsystem - Internet Control Message Protocol (ICMP)
RESOLUTION
ICMP source quench messages are generated when an IP packet is
received by the 11.0 system that can't be delivered to the socket
buffer of the receiving application. The intent is to inform the
sender of the full buffer condition so the rate of the transmission
is slowed down until the buffer can be read by the receiving
application.
Setting the ndd parameter ip_send_source_quench to 0 can be an
effective way to deal with the messages.
Programs that use icmp protocol, such as ping, use a type of
socket called SOCK_RAW. The nature of using raw IP sockets is
that ALL packets received that match the protocol type of the raw
socket are delivered to ALL the sockets using that protocol. It is
up to the application to read all the data in it's socket buffer
and discard the data it's not interested in. If any of these
sockets are full, the icmp source quench message will be generated.
One process that uses one of these sockets is part of DCE, and it
is 'rpcd'. This program opens a raw socket in order to listen for
icmp messages, which it uses to monitor the health of other systems
on the network running DCE. In this case 'rpcd' used a 32K buffer,
and processed the messages received every 5 minutes, which led to
the buffer full condition.
PHSS_17810 addresses the problem by increasing
the buffer size to 128K and processing the messages every 2 minutes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 05:38 AM
04-04-2003 05:38 AM
Re: Source Quench Received
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_send_source_quench
NDD_VALUE[0]=0
(Increase the number in brackets to the next unused integer if you already have entries in this file.)
Ron