<?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 telnet session terminates abruptly in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511903#M595985</link>
    <description>if there is no key board or mouse activity the telnet session hangs. could any body tell me what can be the problem</description>
    <pubDate>Fri, 30 Mar 2001 21:16:22 GMT</pubDate>
    <dc:creator>Jagan Mangalampalli</dc:creator>
    <dc:date>2001-03-30T21:16:22Z</dc:date>
    <item>
      <title>telnet session terminates abruptly</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511903#M595985</link>
      <description>if there is no key board or mouse activity the telnet session hangs. could any body tell me what can be the problem</description>
      <pubDate>Fri, 30 Mar 2001 21:16:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511903#M595985</guid>
      <dc:creator>Jagan Mangalampalli</dc:creator>
      <dc:date>2001-03-30T21:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: telnet session terminates abruptly</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511904#M595986</link>
      <description>Does the session hang, or are you disconnected?&lt;BR /&gt;If the latter then check the value of the TMOUT environment variable.&lt;BR /&gt;&lt;BR /&gt;# echo $TMOUT&lt;BR /&gt;&lt;BR /&gt;If it's &amp;gt;0 then sessions will timeout in that many seconds of inactivity.</description>
      <pubDate>Fri, 30 Mar 2001 21:24:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511904#M595986</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2001-03-30T21:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: telnet session terminates abruptly</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511905#M595987</link>
      <description>hi jim,&lt;BR /&gt;thanks the session hangs and and if i try click with muse or use key board i get the message "telnet sesion aborted" .&lt;BR /&gt;TMOUT is set to 0 .</description>
      <pubDate>Fri, 30 Mar 2001 21:30:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511905#M595987</guid>
      <dc:creator>Jagan Mangalampalli</dc:creator>
      <dc:date>2001-03-30T21:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: telnet session terminates abruptly</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511906#M595988</link>
      <description>First thing I would do is to monitor what is happening with telnetd on server side. You can use Glance and lsof to see what resources it is using and what is the state of the process(if the server is an hp-ux). Look for telnetd messages in your syslog.log file. To have "abort" in client, it suggests that the server is aborting the connection for some reason.&lt;BR /&gt;&lt;BR /&gt;Other very important thing is to use a sniffer (nettl in hp-ux) to trace the connection. Some times you have network problems that cause very strange behaviours. In hp-ux, you can do the following:&lt;BR /&gt;- restart nettl: nettl -stop;nettl -start;&lt;BR /&gt;- start your client telnet connection;&lt;BR /&gt;- discover the telnetd PID and monitor it. It is the father of your shell;&lt;BR /&gt;- start to capture a trace:&lt;BR /&gt;/usr/sbin/nettl -traceon hdrin hdrout pduin \ pduout logging -entity ns_ls_ip -file /tmp/tn -size 1024 -m 128&lt;BR /&gt;- When the problem happens, restart nettl:&lt;BR /&gt;nettl -stop; nettl -start&lt;BR /&gt;- to format the trace file capturing only data from your client, create a filter cfg file, i.e.: vi /tmp/fmt.cfg&lt;BR /&gt;formatter filter  subsystem     !*&lt;BR /&gt;formatter filter  subsystem     NS_LS_IP&lt;BR /&gt;filter  tcp_sport 23 # telnet service&lt;BR /&gt;filter  tcp_dport 23 # telnet service&lt;BR /&gt;filter ip_saddr  15.76.184.107 #IP/telnetclient&lt;BR /&gt;filter ip_daddr  15.76.184.107 #IP/telnetclient&lt;BR /&gt;&lt;BR /&gt;- format the trace:&lt;BR /&gt;/usr/sbin/netfmt -c /tmp/fmt.cfg -N -f /tmp/tn.TRC0 &amp;gt; trcout0     &lt;BR /&gt;/usr/sbin/netfmt -c /tmp/fmt.cfg -N -f /tmp/tn.TRC1 &amp;gt; trcout1     &lt;BR /&gt;&lt;BR /&gt;Now you are able to analise formated data in trcout0 and trcout1 and see who is terminating the connection. You should also determine what is going on with your telnetd on server side. To discover what socket is being used by telnetd, use lsof. To monitor the telnetd process, use ps -efl inside a while. To monitor proccess state, use glance.&lt;BR /&gt;&lt;BR /&gt;If it appears to be a tough task, open a Response Center call and provide with all data you have collected.&lt;BR /&gt;&lt;BR /&gt;Good luck!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Apr 2001 12:33:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511906#M595988</guid>
      <dc:creator>Celso Medina Kern</dc:creator>
      <dc:date>2001-04-02T12:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: telnet session terminates abruptly</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511907#M595989</link>
      <description>You can see /var/adm/inetd.sec.</description>
      <pubDate>Mon, 02 Apr 2001 12:41:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511907#M595989</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-04-02T12:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: telnet session terminates abruptly</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511908#M595990</link>
      <description>One more thing I?ve remembered. Some weird behaviours happen when you get a duplicated IP in your server, like hangs/aborts. hp-ux catches this events. Issue a `netfmt -N -f /var/adm/nettl.LOG00` and look for "duplicated IP address" or "is trying to use our address" in the output. If it does show up, look what is the LAN address in the output and find it physically in your network to change to another IP.</description>
      <pubDate>Mon, 09 Apr 2001 18:50:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-session-terminates-abruptly/m-p/2511908#M595990</guid>
      <dc:creator>Celso Medina Kern</dc:creator>
      <dc:date>2001-04-09T18:50:27Z</dc:date>
    </item>
  </channel>
</rss>

