<?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: network connection printer down in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727345#M584863</link>
    <description>Do you have any NT boxes involved in this mess?  There is a bug even in NT SP6A in the TCP/IP stack that forgets to resend an unacknowledged FIN.  I have the fix from Microsoft if you need it.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
    <pubDate>Mon, 20 May 2002 21:10:49 GMT</pubDate>
    <dc:creator>Ron Kinner</dc:creator>
    <dc:date>2002-05-20T21:10:49Z</dc:date>
    <item>
      <title>network connection printer down</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727341#M584859</link>
      <description>We always experience connection printer down. When this happen the users will not be able to use the remote printer.&lt;BR /&gt;They can only use the network printer. The network printer can still be used if the connection printer down happens.&lt;BR /&gt;If we do a lpstat -t command there will be a lot of connection printer down message appear. For the remote printer we use the omniprint software at the client side. If we ping to the remote printer the network is still alive. When we check using the command below:&lt;BR /&gt;  # netstat -an|grep FIN_WAIT_2|wc -l&lt;BR /&gt;The figure will be around 499. This is what we notice. If it is less than 499 the connection printer down won't happen.&lt;BR /&gt;   &lt;BR /&gt;Appreciate your help on the above problem.&lt;BR /&gt;Thanks for helping.&lt;BR /&gt;   &lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Mon, 20 May 2002 09:00:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727341#M584859</guid>
      <dc:creator>Rashid Hamid</dc:creator>
      <dc:date>2002-05-20T09:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: network connection printer down</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727342#M584860</link>
      <description>Sounds like a problem we had.&lt;BR /&gt;&lt;BR /&gt;Our network was shared with Novell Netware. Novell has the worst "noise" on a network. &lt;BR /&gt;The fix was to configure switches not to allow SNMP from Novell servers (unless they are print servers). Later we separated Novell and UNIX on the network. The UNIX network (HP, SUN, Digital, Linux, SCO) runs at least twice the speed of the Novell one.</description>
      <pubDate>Mon, 20 May 2002 09:11:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727342#M584860</guid>
      <dc:creator>Niel Greeff_1</dc:creator>
      <dc:date>2002-05-20T09:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: network connection printer down</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727343#M584861</link>
      <description>what type of printer is it and does it have any power saving settings?&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;George</description>
      <pubDate>Mon, 20 May 2002 09:13:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727343#M584861</guid>
      <dc:creator>George_Dodds</dc:creator>
      <dc:date>2002-05-20T09:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: network connection printer down</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727344#M584862</link>
      <description>When a network connection starts to go down, hand-shaking occurs to  ensure that both sides have completely cleaned up the connection.  When the HP gets a connection close request from a outside source, it will begin to shutdown the connection.  To see if the other side is ready to proceed with the close, it sends a FIN packet to the other end and waits for a FIN_ACK.  While waiting for this packet, the system will show the connection in a FIN_WAIT_1 state. &lt;BR /&gt;&lt;BR /&gt;Once this first FIN_ACK is received, the system will shut more of the connection down and just before everything closes, it will send a second FIN packet to the other side and wait for another FIN_ACK.  While waiting, connections will be reported in the FIN_WAIT_2 state. In either of these state, nothing can be done to the connection.  By default, the system will wait indefinitely for the FIN_ACKs because it wants to ensure that the other side of the connection closes cleanly. &lt;BR /&gt;&lt;BR /&gt;So, you need to modify some TCP settings in order to get around the large number of FIN_WAIT_2 connections you have. Heres what to add into your /etc/rc.config.d/nddconf file;&lt;BR /&gt;&lt;BR /&gt;TRANSPORT_NAME[0]=tcp&lt;BR /&gt;NDD_NAME[0]=tcp_ip_abort_interval&lt;BR /&gt;NDD_VALUE[0]=30000&lt;BR /&gt;&lt;BR /&gt;TRANSPORT_NAME[1]=tcp&lt;BR /&gt;NDD_NAME[1]=tcp_ip_abort_cinterval&lt;BR /&gt;NDD_VALUE[1]=15000&lt;BR /&gt;&lt;BR /&gt;TRANSPORT_NAME[2]=tcp&lt;BR /&gt;NDD_NAME[2]=tcp_fin_wait_2_timeout&lt;BR /&gt;NDD_VALUE[2]=15000&lt;BR /&gt;&lt;BR /&gt;Add these to the nddconf file, reboot, and now you shouldnt get anywhere as many FIN_WAIT_2 connections. &lt;BR /&gt;&lt;BR /&gt;There is also a script to kill sockets stuck in FIN_WAIT_2 but its possibly risky and its much better to prevent them in the first place than kill them once theyre created.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 20 May 2002 09:13:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727344#M584862</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-05-20T09:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: network connection printer down</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727345#M584863</link>
      <description>Do you have any NT boxes involved in this mess?  There is a bug even in NT SP6A in the TCP/IP stack that forgets to resend an unacknowledged FIN.  I have the fix from Microsoft if you need it.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Mon, 20 May 2002 21:10:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-connection-printer-down/m-p/2727345#M584863</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2002-05-20T21:10:49Z</dc:date>
    </item>
  </channel>
</rss>

