<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Source Quench Received in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943459#M577257</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I had not trouble finding it. Instead of searching for the document number use 'source quench'&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;Michael&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;PROBLEM&lt;BR /&gt;Upon pinging an 11.0 system, I am seeing a packet loss and Internet&lt;BR /&gt;Control Message Protocol (ICMP) source quench messages.&lt;BR /&gt;&lt;BR /&gt;Why am I getting these messages?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;CONFIGURATION&lt;BR /&gt;Operating System - HP-UX&lt;BR /&gt;Version - 11.0&lt;BR /&gt;Subsystem - Internet Control Message Protocol (ICMP)&lt;BR /&gt;&lt;BR /&gt;RESOLUTION&lt;BR /&gt;ICMP source quench messages are generated when an IP packet is&lt;BR /&gt;received by the 11.0 system that can't be delivered to the socket&lt;BR /&gt;buffer of the receiving application.  The intent is to inform the&lt;BR /&gt;sender of the full buffer condition so the rate of the transmission&lt;BR /&gt;is slowed down until the buffer can be read by the receiving&lt;BR /&gt;application.&lt;BR /&gt;&lt;BR /&gt;Setting the ndd parameter ip_send_source_quench to 0 can be an&lt;BR /&gt;effective way to deal with the messages.&lt;BR /&gt;&lt;BR /&gt;Programs that use icmp protocol, such as ping, use a type of&lt;BR /&gt;socket called SOCK_RAW.  The nature of using raw IP sockets is&lt;BR /&gt;that ALL packets received that match the protocol type of the raw&lt;BR /&gt;socket are delivered to ALL the sockets using that protocol.  It is&lt;BR /&gt;up to the application to read all the data in it's socket buffer&lt;BR /&gt;and discard the data it's not interested in. If any of these&lt;BR /&gt;sockets are full, the icmp source quench message will be generated.&lt;BR /&gt;&lt;BR /&gt;One process that uses one of these sockets is part of DCE, and it&lt;BR /&gt;is 'rpcd'.  This program opens a raw socket in order to listen for&lt;BR /&gt;icmp messages, which it uses to monitor the health of other systems&lt;BR /&gt;on the network running DCE.  In this case 'rpcd' used a 32K buffer,&lt;BR /&gt;and processed the messages received every 5 minutes, which led to&lt;BR /&gt;the buffer full condition.&lt;BR /&gt;&lt;BR /&gt;PHSS_17810                    addresses the problem by increasing&lt;BR /&gt;the buffer size to 128K and processing the messages every 2 minutes.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 04 Apr 2003 00:13:11 GMT</pubDate>
    <dc:creator>Michael Tully</dc:creator>
    <dc:date>2003-04-04T00:13:11Z</dc:date>
    <item>
      <title>Source Quench Received</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943454#M577252</link>
      <description>When i run a ping to one of the network &lt;BR /&gt;interfases, received the message:&lt;BR /&gt;&lt;BR /&gt;Source Quench Received&lt;BR /&gt;&lt;BR /&gt;How can i correct this situation?&lt;BR /&gt;&lt;BR /&gt;Is there some potential network or interfase problem?&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;&lt;BR /&gt;Alexander Santamaria</description>
      <pubDate>Thu, 03 Apr 2003 20:09:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943454#M577252</guid>
      <dc:creator>Alexander Santamaria Ji</dc:creator>
      <dc:date>2003-04-03T20:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Source Quench Received</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943455#M577253</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;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:&lt;BR /&gt;&lt;BR /&gt;ndd -get /dev/ip ip_send_source_quench&lt;BR /&gt;&lt;BR /&gt;If it returns a 1, you have source quench turned on.  You can do this:&lt;BR /&gt;&lt;BR /&gt;ndd -set /dev/ip ip_send_source_quench 0&lt;BR /&gt;&lt;BR /&gt;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.  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Apr 2003 20:16:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943455#M577253</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2003-04-03T20:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Source Quench Received</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943456#M577254</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 03 Apr 2003 20:21:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943456#M577254</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-04-03T20:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Source Quench Received</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943457#M577255</link>
      <description>RFC792 has a good description:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.faqs.org/rfcs/rfc792.html" target="_blank"&gt;http://www.faqs.org/rfcs/rfc792.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Berlene</description>
      <pubDate>Thu, 03 Apr 2003 20:44:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943457#M577255</guid>
      <dc:creator>Berlene Herren</dc:creator>
      <dc:date>2003-04-03T20:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Source Quench Received</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943458#M577256</link>
      <description>Hi;&lt;BR /&gt;&lt;BR /&gt;Thanks for your responses&lt;BR /&gt;&lt;BR /&gt;I can't find the S3100005739 document if &lt;BR /&gt;somebody has it can you send to me as an &lt;BR /&gt;attachment&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;&lt;BR /&gt;Alexander Santamaria</description>
      <pubDate>Thu, 03 Apr 2003 21:05:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943458#M577256</guid>
      <dc:creator>Alexander Santamaria Ji</dc:creator>
      <dc:date>2003-04-03T21:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Source Quench Received</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943459#M577257</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I had not trouble finding it. Instead of searching for the document number use 'source quench'&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;Michael&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;PROBLEM&lt;BR /&gt;Upon pinging an 11.0 system, I am seeing a packet loss and Internet&lt;BR /&gt;Control Message Protocol (ICMP) source quench messages.&lt;BR /&gt;&lt;BR /&gt;Why am I getting these messages?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;CONFIGURATION&lt;BR /&gt;Operating System - HP-UX&lt;BR /&gt;Version - 11.0&lt;BR /&gt;Subsystem - Internet Control Message Protocol (ICMP)&lt;BR /&gt;&lt;BR /&gt;RESOLUTION&lt;BR /&gt;ICMP source quench messages are generated when an IP packet is&lt;BR /&gt;received by the 11.0 system that can't be delivered to the socket&lt;BR /&gt;buffer of the receiving application.  The intent is to inform the&lt;BR /&gt;sender of the full buffer condition so the rate of the transmission&lt;BR /&gt;is slowed down until the buffer can be read by the receiving&lt;BR /&gt;application.&lt;BR /&gt;&lt;BR /&gt;Setting the ndd parameter ip_send_source_quench to 0 can be an&lt;BR /&gt;effective way to deal with the messages.&lt;BR /&gt;&lt;BR /&gt;Programs that use icmp protocol, such as ping, use a type of&lt;BR /&gt;socket called SOCK_RAW.  The nature of using raw IP sockets is&lt;BR /&gt;that ALL packets received that match the protocol type of the raw&lt;BR /&gt;socket are delivered to ALL the sockets using that protocol.  It is&lt;BR /&gt;up to the application to read all the data in it's socket buffer&lt;BR /&gt;and discard the data it's not interested in. If any of these&lt;BR /&gt;sockets are full, the icmp source quench message will be generated.&lt;BR /&gt;&lt;BR /&gt;One process that uses one of these sockets is part of DCE, and it&lt;BR /&gt;is 'rpcd'.  This program opens a raw socket in order to listen for&lt;BR /&gt;icmp messages, which it uses to monitor the health of other systems&lt;BR /&gt;on the network running DCE.  In this case 'rpcd' used a 32K buffer,&lt;BR /&gt;and processed the messages received every 5 minutes, which led to&lt;BR /&gt;the buffer full condition.&lt;BR /&gt;&lt;BR /&gt;PHSS_17810                    addresses the problem by increasing&lt;BR /&gt;the buffer size to 128K and processing the messages every 2 minutes.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Apr 2003 00:13:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943459#M577257</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-04-04T00:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Source Quench Received</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943460#M577258</link>
      <description>We had this problem over a year ago.  After I posted a question on the forum I got back the above article and the information that you could turn it off in ndd.  I forwarded the info to my HPUX admin group and they elected to just just try the ndd change since this was a production system and they are afraid of breaking something.  (Also a patch would have to be done at 3AM during our only downtime window and they don't like to stay up all night to do it.) We have been running happily with the ndd change now for over a year with no adverse effects.  Just don't forget to change the /etc/rc.config.d/nddconf file so that if it reboots you will still have it.&lt;BR /&gt;&lt;BR /&gt;TRANSPORT_NAME[0]=ip &lt;BR /&gt;NDD_NAME[0]=ip_send_source_quench &lt;BR /&gt;NDD_VALUE[0]=0 &lt;BR /&gt;&lt;BR /&gt;(Increase the number in brackets to the next unused integer if you already have entries in this file.)&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Fri, 04 Apr 2003 13:38:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/source-quench-received/m-p/2943460#M577258</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2003-04-04T13:38:20Z</dc:date>
    </item>
  </channel>
</rss>

