<?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: TCPIP connection problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023995#M564299</link>
    <description>This isn't surely a TCP limitation. If that service runs through inetd deamon try search in the inetd configuration, or in the OSS server configuration.&lt;BR /&gt;How much connection can you have together?&lt;BR /&gt;&lt;BR /&gt;Ciao&lt;BR /&gt;Claudio</description>
    <pubDate>Tue, 15 Jul 2003 11:42:17 GMT</pubDate>
    <dc:creator>Claudio Cilloni</dc:creator>
    <dc:date>2003-07-15T11:42:17Z</dc:date>
    <item>
      <title>TCPIP connection problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023993#M564297</link>
      <description>We use a central HP-UX server (version 11.11) as saprouter-server to provide OSS connections for authorized SAP R/3 systems.&lt;BR /&gt;Connections are established via TCP service 3299 (/etc/services).&lt;BR /&gt;&lt;BR /&gt;Sometimes we face a limitation problem; no additional connections can be set up. After another connection is closed, a new one can be opened.&lt;BR /&gt;&lt;BR /&gt;Couls this be a TCP limitation; I was thinking maybe of parameter tcp_conn_request_max&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for your reaction</description>
      <pubDate>Tue, 15 Jul 2003 11:29:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023993#M564297</guid>
      <dc:creator>Pierre Starmans</dc:creator>
      <dc:date>2003-07-15T11:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP connection problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023994#M564298</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt; Check the output of "netstat -p -tcp" and look for the value of Connection Requests dropped due to full queue if thats zero then you should not have to tune tcp_conn_request_max. &lt;BR /&gt;&lt;BR /&gt;The default is 20 on 11.i, a good value to test w/ is 1024. Remember to also make your change in the /etc/rc.config.d/nddconf file.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Usable commands:&lt;BR /&gt;Check the current value:&lt;BR /&gt;&lt;BR /&gt;ndd -get /dev/tcp tcp_conn_request_max&lt;BR /&gt;Set the maximum for the connection request to 1024:&lt;BR /&gt;&lt;BR /&gt;ndd -set /dev/tcp tcp_conn_request_max 1024&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;nddconf entry example:&lt;BR /&gt;TRANSPORT_NAME[0]=tcp&lt;BR /&gt;NDD_NAME[0]=tcp_conn_request_max&lt;BR /&gt;NDD_VALUE[0]=1024&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Jul 2003 11:41:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023994#M564298</guid>
      <dc:creator>Todd Whitcher</dc:creator>
      <dc:date>2003-07-15T11:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP connection problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023995#M564299</link>
      <description>This isn't surely a TCP limitation. If that service runs through inetd deamon try search in the inetd configuration, or in the OSS server configuration.&lt;BR /&gt;How much connection can you have together?&lt;BR /&gt;&lt;BR /&gt;Ciao&lt;BR /&gt;Claudio</description>
      <pubDate>Tue, 15 Jul 2003 11:42:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023995#M564299</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2003-07-15T11:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP connection problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023996#M564300</link>
      <description>tcp_conn_request_max is just the limit on the number of new connections that can try to get set up at once.  They get stuck in a queue and have to wait until they are handled.  This parameter is the queue length. It doesn't sound like it would be your problem and I'm not convinced that a nonzero indication would necessarily indicate a problem with tcp_conn_request_max since per HP's Rick Jones at:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="ftp://ftp.cup.hp.com/dist/networking/briefs/annotated_netstat.txt" target="_blank"&gt;ftp://ftp.cup.hp.com/dist/networking/briefs/annotated_netstat.txt&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;there is another reason which might cause this:&lt;BR /&gt;&lt;BR /&gt;"0 connect requests dropped due to full queue&lt;BR /&gt;&lt;BR /&gt;If the number of connection requests (SYN segments) dropped due to&lt;BR /&gt;full queue is non-zero it means that either the setting for&lt;BR /&gt;tcp_conn_request_max is too small, or one or more applications on the&lt;BR /&gt;system is using too small a value for the listen backlog in its call&lt;BR /&gt;to listen().&lt;BR /&gt;&lt;BR /&gt;It is also possible that those settings are good, but one or more&lt;BR /&gt;applications have stopped calling accept() against their listen&lt;BR /&gt;socket(s) - perhaps they are saturated, or perhaps they are caught in&lt;BR /&gt;an infinite loop."&lt;BR /&gt;&lt;BR /&gt; The total number of connections is limited only by your application, cpu load and the available memory and bandwidth.  Since you say dropping one connection allows a new one I'd look at the application.  First make sure it's not starved for memory or disk space or cpu time then check with the maker to see if there is a limit.  &lt;BR /&gt;&lt;BR /&gt;I assume you are uptodate on your ARPA patches so we don't have to worry about an HP software bug.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Tue, 15 Jul 2003 14:04:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023996#M564300</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2003-07-15T14:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP connection problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023997#M564301</link>
      <description>Others have pointed-out what tcp_conn_request_max affects wuite well.  My guess would be that the settings of maxfiles/maxfiles_lim is being reached - at that point the process cannot allocate any new file descriptors, and a socket descriptor is simply a file descriptor that happens to reference a socket rather than a file.&lt;BR /&gt;&lt;BR /&gt;Less likely but still possible is hitting the system-wide limit on file descriptors - nfile.&lt;BR /&gt;&lt;BR /&gt;There is indeed no hardcoded limit to the number of TCP connections a system can have.</description>
      <pubDate>Wed, 16 Jul 2003 00:57:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023997#M564301</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2003-07-16T00:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: TCPIP connection problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023998#M564302</link>
      <description>This is most certainly not a tcp limitation. The saprouter service is per default limited to 800 connections. As for every connection an incoming and one outgoing connection is needed this gives you a limit of 400 connected users.&lt;BR /&gt;&lt;BR /&gt;If more connections are needed you can increase the value to 2000 and configure multiple saprouter services. Check the -C and -Y options. This values are valid at least for saprouter from sap kernels 620/640.&lt;BR /&gt;&lt;BR /&gt;Regards Michael</description>
      <pubDate>Wed, 05 Jan 2005 02:57:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcpip-connection-problem/m-p/3023998#M564302</guid>
      <dc:creator>Hofmaenner</dc:creator>
      <dc:date>2005-01-05T02:57:03Z</dc:date>
    </item>
  </channel>
</rss>

