<?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: What does source quench received mean in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720618#M588666</link>
    <description>Hi,&lt;BR /&gt;I have inserted this command in the /etc/rc.config.d/nddconf&lt;BR /&gt;but there is no changes&lt;BR /&gt;&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;&lt;BR /&gt;do I have to reboot the server ??&lt;BR /&gt;or what else I can do to overcome to this problem.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
    <pubDate>Fri, 10 May 2002 02:40:54 GMT</pubDate>
    <dc:creator>Sritharan</dc:creator>
    <dc:date>2002-05-10T02:40:54Z</dc:date>
    <item>
      <title>What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720612#M588660</link>
      <description>Hi &lt;BR /&gt;while I was ping ing the server I saw a message came out &lt;BR /&gt;Reply from *.*.*.* : source quench received &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;what does this mean ??&lt;BR /&gt;how to overcome this problem ??&lt;BR /&gt;check out the attachment also &lt;BR /&gt;thanks</description>
      <pubDate>Thu, 09 May 2002 14:19:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720612#M588660</guid>
      <dc:creator>Sritharan</dc:creator>
      <dc:date>2002-05-09T14:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720613#M588661</link>
      <description>Hi Sritharan&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here it goes:&lt;BR /&gt;&lt;BR /&gt;This problem has been identified and is addressed in SR 5003435396.&lt;BR /&gt;This problem will be fixed in the 11.01 version of the HP-UX operating&lt;BR /&gt;system.  These messages can be safely ignored as they have absolutely no&lt;BR /&gt;impact on the operating system (performance or otherwise).  Alternatively&lt;BR /&gt;these messages can be prevented by disabling source quench.  For more&lt;BR /&gt;information see the sections below.&lt;BR /&gt;&lt;BR /&gt;What is causing these messages?&lt;BR /&gt;&lt;BR /&gt;At 11.0 the Streams Xport layer now passes the ICMP echo request to any&lt;BR /&gt;other process that has a socket open and bound to raw IP.  The rpcd&lt;BR /&gt;rpcd/dced deamon opens a raw socket to listen to ICMP messages.  This raw&lt;BR /&gt;socket is  open by icmp_monitor routine of rpcd.  The main function of&lt;BR /&gt;this routine is to check for error messages from DCE servers registered&lt;BR /&gt;in endpoint database of the host and it checks the socket every 5&lt;BR /&gt;minutes.  It does not respond to or use the ICMP echo requests; however,&lt;BR /&gt;the socket queue becomes filled during the 5-minute delay causing the&lt;BR /&gt;source quench message.  The fix being implemented in 11.01 will be to&lt;BR /&gt;increase the buffer size to 128 K and shorten the wait interval from 5&lt;BR /&gt;minutes to 2 minutes, thereby flushing the queue of these unwanted&lt;BR /&gt;messages before the queue becomes filled.&lt;BR /&gt;&lt;BR /&gt;Why is it safe to ignore these messages or to turn them off?&lt;BR /&gt;&lt;BR /&gt;A good disscussion of this is in TCPIP Illustrated Volume 1,&lt;BR /&gt;by Richard Stevens, pages 160-162.Here is an excerpt from page 161:&lt;BR /&gt;&lt;BR /&gt;     Although RFC 1009 [Braden and Postal 1987] requires a&lt;BR /&gt;     router to generate source quenches when it runs out of&lt;BR /&gt;     buffers, the new router requirements RFC [Almquist 1993]&lt;BR /&gt;     changes this and says that a router must not originate&lt;BR /&gt;     source quench errors.  The current feeling is to deprecate&lt;BR /&gt;     the source quench error, since it consumes network bandwidth&lt;BR /&gt;     and is an ineffective and unfair fix for congestion.&lt;BR /&gt;&lt;BR /&gt;Also, see RFC 1812, section 4.3.3.3 Source Quench for a good&lt;BR /&gt;discussion of the issues.&lt;BR /&gt;&lt;BR /&gt;Also RFC 2001 has discussion on Congestion and why TCP should handle&lt;BR /&gt;this not ICMP:  &lt;BR /&gt;&lt;BR /&gt;   Congestion avoidance and slow start are independent&lt;BR /&gt;     algorithms with different objectives.  But when congestion&lt;BR /&gt;     occurs, TCP must slow down its transmission rate of packets&lt;BR /&gt;     into the network and then invoke slow start to get things&lt;BR /&gt;     going again.  In practice, they are implemented together.&lt;BR /&gt;&lt;BR /&gt;Exactly how do I disable source quench?&lt;BR /&gt;&lt;BR /&gt;You  can disable source quench in HP-UX 11.0 by executing this command:&lt;BR /&gt;&lt;BR /&gt;     ndd -set /dev/ip ip_send_source_quench 0&lt;BR /&gt;&lt;BR /&gt;To disable Source Quench so that it can survive a reboot,&lt;BR /&gt;&lt;BR /&gt;modify the /etc/rc.config.d/nddconf file as follows :   &lt;BR /&gt;     TRANSPORT_NAME[X]=ip&lt;BR /&gt;     NDD_NAME[X]=ip_send_source_quench &lt;BR /&gt;     NDD_VALUE[X]=0&lt;BR /&gt;&lt;BR /&gt;Where X is the next logical numerical sequence in a table&lt;BR /&gt;of values, with X starting at 0.&lt;BR /&gt;--------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;DCE patch and dependencies: &lt;BR /&gt;&lt;BR /&gt;           3  PHCO_23651  fsck_vxfs(1M) cumulative patch&lt;BR /&gt;           2    PHCO_23876  cumulative SAM/ObAM patch&lt;BR /&gt;         1      PHCO_25883  cumulative 10.20 libc compatibility support&lt;BR /&gt;             3  PHKL_18543  PM/VM/UFS/async/scsi/io/DMAPI/JFS/perf patch&lt;BR /&gt;             3  PHKL_20016  2nd CPU not recognized in G70/H70/I70&lt;BR /&gt;             3  PHKL_23956  Profile, virtual timers and disabling fix&lt;BR /&gt;             3  PHKL_24027  VxFS 3.1 cumulative patch&lt;BR /&gt;         1      PHKL_25906  Probe,IDDS,PM,VM,PA-8700,asyncio,T600,FS&lt;BR /&gt;         1      PHKL_25999  syscall, msem_lock, umask cumulative patch&lt;BR /&gt;           2    PHSS_21614  HP DCE/9000 1.7 Runtime cumulative patch&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You may like to do  like this&lt;BR /&gt;ndd -set /dev/ip ip_send_source_quench 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;this is solve the issue.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 May 2002 14:21:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720613#M588661</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-05-09T14:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720614#M588662</link>
      <description>Hi Sritharan,&lt;BR /&gt;&lt;BR /&gt;This is to do with the TCP buffers getting full.&lt;BR /&gt;&lt;BR /&gt;You can avoid by doing the following&lt;BR /&gt;&lt;BR /&gt;# cd /etc/rc.config.d&lt;BR /&gt;# vi nddconf&lt;BR /&gt;&lt;BR /&gt;and add the following lines&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;&lt;BR /&gt;-Sukant&lt;BR /&gt;</description>
      <pubDate>Thu, 09 May 2002 14:24:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720614#M588662</guid>
      <dc:creator>Sukant Naik</dc:creator>
      <dc:date>2002-05-09T14:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720615#M588663</link>
      <description>run search on source quench on forum and you will receiced many many thread to explain it and how to disable it etc....&lt;BR /&gt;&lt;BR /&gt;Here is sort explanation&lt;BR /&gt;&lt;BR /&gt;This message is result of ping only. It is just a warning message that ICMP request that source has received is too fast and it is not able to response back. so it tells ping server to slow down. This will help to  prevent their buffer from overflowing.  As we can see from following figure it send this warning message only when network traffic is very very high.  As you can see on second figure it starts working when you have less network traffic. &lt;BR /&gt;&lt;BR /&gt;We can suppress this message very easily. And it will even improve our performance because we are getting rid of that traffic from network. Only problem is when ICMP request fails it will don't know when to stop. We can disable this error message on fly. &lt;BR /&gt;# ndd -set /dev/ip ip_send_source_quench 0 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 May 2002 14:25:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720615#M588663</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2002-05-09T14:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720616#M588664</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Check the following link.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support.external.hp.com/cki/bin/doc.pl/sid=a2ca98890d53fafb25/screen=ckiDisplayDocument?docId=200000049809940" target="_blank"&gt;http://us-support.external.hp.com/cki/bin/doc.pl/sid=a2ca98890d53fafb25/screen=ckiDisplayDocument?docId=200000049809940&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Prashant Deshpande.</description>
      <pubDate>Thu, 09 May 2002 14:25:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720616#M588664</guid>
      <dc:creator>Deshpande Prashant</dc:creator>
      <dc:date>2002-05-09T14:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720617#M588665</link>
      <description>Hi Sritharan,&lt;BR /&gt;&lt;BR /&gt;Here are few docs&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa8a7e7613948d5118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa8a7e7613948d5118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa041af48a9e5d5118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa041af48a9e5d5118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xea6837f45ef7d4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xea6837f45ef7d4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Sukant&lt;BR /&gt;</description>
      <pubDate>Thu, 09 May 2002 14:31:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720617#M588665</guid>
      <dc:creator>Sukant Naik</dc:creator>
      <dc:date>2002-05-09T14:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720618#M588666</link>
      <description>Hi,&lt;BR /&gt;I have inserted this command in the /etc/rc.config.d/nddconf&lt;BR /&gt;but there is no changes&lt;BR /&gt;&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;&lt;BR /&gt;do I have to reboot the server ??&lt;BR /&gt;or what else I can do to overcome to this problem.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Fri, 10 May 2002 02:40:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720618#M588666</guid>
      <dc:creator>Sritharan</dc:creator>
      <dc:date>2002-05-10T02:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720619#M588667</link>
      <description>&lt;BR /&gt;hi sritharan&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; u have to use this command&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ndd -set /dev/ip ip_send_source_quench 0&lt;BR /&gt;&lt;BR /&gt;this will solve ur problem&lt;BR /&gt;&lt;BR /&gt;aftre reboot also u have to do the same thing as told above.for eradicating that it is told u to put th entry in nddconf file&lt;BR /&gt;&lt;BR /&gt;CTK</description>
      <pubDate>Fri, 10 May 2002 02:52:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720619#M588667</guid>
      <dc:creator>Vijeesh CTK</dc:creator>
      <dc:date>2002-05-10T02:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720620#M588668</link>
      <description>Hello,&lt;BR /&gt;Disable the messages using&lt;BR /&gt;&lt;BR /&gt;#ndd -set /dev/ip ip_send_source_quench 0 &lt;BR /&gt;check it using &lt;BR /&gt;#ndd -get /dev/ip ip_send_source_quench&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you want the entries permanent &lt;BR /&gt;you have to make the entries in nddconf file(you have already done it).&lt;BR /&gt;&lt;BR /&gt;Now the messages are stopped by using the ndd commandline option.So there is no need to reboot the server.If only there is a purpose of reboot the entries in the nddconf file will take care.&lt;BR /&gt;&lt;BR /&gt;Else if you want to test it &lt;BR /&gt;then &lt;BR /&gt;YOu should do a &lt;BR /&gt;/sbin/init.d/net stop&lt;BR /&gt;/sbin/init.d/net start&lt;BR /&gt;OR&lt;BR /&gt;you should reboot your server&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 10 May 2002 04:54:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720620#M588668</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-05-10T04:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: What does source quench received mean</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720621#M588669</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thank you to everybody who had helped me&lt;BR /&gt;&lt;BR /&gt;Thanks &lt;BR /&gt;Sri &lt;BR /&gt;</description>
      <pubDate>Sat, 11 May 2002 09:31:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-does-source-quench-received-mean/m-p/2720621#M588669</guid>
      <dc:creator>Sritharan</dc:creator>
      <dc:date>2002-05-11T09:31:01Z</dc:date>
    </item>
  </channel>
</rss>

