<?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: telnet in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928454#M46157</link>
    <description>this is very old server, ther is no xinetd, &lt;BR /&gt;it uses inetd.conf</description>
    <pubDate>Fri, 23 Sep 2005 03:48:04 GMT</pubDate>
    <dc:creator>Chakravarthi</dc:creator>
    <dc:date>2005-09-23T03:48:04Z</dc:date>
    <item>
      <title>telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928450#M46153</link>
      <description>hi, &lt;BR /&gt;&lt;BR /&gt;i'm using very old 2.2 kernel machine,now &lt;BR /&gt;how do i findout how many telnet sessions are allowed and how many are there?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2005 02:30:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928450#M46153</guid>
      <dc:creator>Chakravarthi</dc:creator>
      <dc:date>2005-09-23T02:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928451#M46154</link>
      <description>You can count number of open telnet sessions as,&lt;BR /&gt;&lt;BR /&gt;# netstat -na | grep -w '23' &lt;BR /&gt;&lt;BR /&gt;hth.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2005 02:58:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928451#M46154</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-23T02:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928452#M46155</link>
      <description>To get the telnet sessions are allowed,&lt;BR /&gt;&lt;BR /&gt;refer this thread:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=73301" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=73301&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Basec on /etc/xinet.d/telnet file for instance information, session count is activated for telnet.&lt;BR /&gt;&lt;BR /&gt;hth.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2005 03:02:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928452#M46155</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-23T03:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928453#M46156</link>
      <description>How much telnet sessions are still present:&lt;BR /&gt;netstat -an|grep -i esta|grep ":23 "|wc -l&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How much are allowed:&lt;BR /&gt;in the file /etc/xinetd.d/telnet,&lt;BR /&gt;check for "instances = X", where X is the number of sessions allowed for the service telnet.&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Alex</description>
      <pubDate>Fri, 23 Sep 2005 03:11:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928453#M46156</guid>
      <dc:creator>Alessandro Pilati</dc:creator>
      <dc:date>2005-09-23T03:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928454#M46157</link>
      <description>this is very old server, ther is no xinetd, &lt;BR /&gt;it uses inetd.conf</description>
      <pubDate>Fri, 23 Sep 2005 03:48:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928454#M46157</guid>
      <dc:creator>Chakravarthi</dc:creator>
      <dc:date>2005-09-23T03:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928455#M46158</link>
      <description>The number of telnet sessions is normally limited by te number of pty/pts devices.&lt;BR /&gt;&lt;BR /&gt;For example, in Tru64 Unix (old version), you must manually create the pty devices to allow more telnet connections, with MAKEDEV pty. &lt;BR /&gt;&lt;BR /&gt;Now, I think that in Linux (Not sure for your kernel version), ptys are allocated dynamically.&lt;BR /&gt;&lt;BR /&gt;See:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.linux.com/howtos/Text-Terminal-HOWTO-6.shtml" target="_blank"&gt;http://www.linux.com/howtos/Text-Terminal-HOWTO-6.shtml&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.atnf.csiro.au/people/rgooch/linux/docs/devfs.html" target="_blank"&gt;http://www.atnf.csiro.au/people/rgooch/linux/docs/devfs.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Now, for the number of current sessions, you can run:&lt;BR /&gt;&lt;BR /&gt;netstat -an |grep ESTABLISHED|grep w.x.y.z:23 | wc -l&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2005 04:51:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928455#M46158</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2005-09-23T04:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928456#M46159</link>
      <description>hi, &lt;BR /&gt;&lt;BR /&gt;i use 2.2.14 kernel ( redhat 6.2)&lt;BR /&gt;&lt;BR /&gt;--chakri</description>
      <pubDate>Mon, 26 Sep 2005 01:37:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928456#M46159</guid>
      <dc:creator>Chakravarthi</dc:creator>
      <dc:date>2005-09-26T01:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928457#M46160</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Just refer the following link. You can get the info:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://groups.google.com/group/comp.os.linux.networking/browse_thread/thread/49e02bae57bd3667/2a3ed2543192651d?lnk=st&amp;amp;q=increase++telnet+session+Linux&amp;amp;rnum=2&amp;amp;hl=en#2a3ed2543192651d" target="_blank"&gt;http://groups.google.com/group/comp.os.linux.networking/browse_thread/thread/49e02bae57bd3667/2a3ed2543192651d?lnk=st&amp;amp;q=increase++telnet+session+Linux&amp;amp;rnum=2&amp;amp;hl=en#2a3ed2543192651d&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Mon, 26 Sep 2005 03:10:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928457#M46160</guid>
      <dc:creator>VEL_1</dc:creator>
      <dc:date>2005-09-26T03:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928458#M46161</link>
      <description>thanks for the responses</description>
      <pubDate>Thu, 29 Sep 2005 02:22:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/4928458#M46161</guid>
      <dc:creator>Chakravarthi</dc:creator>
      <dc:date>2005-09-29T02:22:36Z</dc:date>
    </item>
  </channel>
</rss>

