<?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/3412252#M14646</link>
    <description>to be able to telnet with root user -you must add the following to the /etc/securetty&lt;BR /&gt;pts/0&lt;BR /&gt;pts/1&lt;BR /&gt;pts/2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and so on....&lt;BR /&gt;I'd add at least until pts/20</description>
    <pubDate>Tue, 02 Nov 2004 10:43:56 GMT</pubDate>
    <dc:creator>Alexander Chuzhoy</dc:creator>
    <dc:date>2004-11-02T10:43:56Z</dc:date>
    <item>
      <title>telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412247#M14641</link>
      <description>I have just installed Red Hat AS 2.1 but I cannot open a telnet/ftp session to the server.&lt;BR /&gt;&lt;BR /&gt;What should I config in the sever to allow users to open a telnet/ftp session?</description>
      <pubDate>Mon, 01 Nov 2004 21:46:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412247#M14641</guid>
      <dc:creator>Tonatiuh</dc:creator>
      <dc:date>2004-11-01T21:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412248#M14642</link>
      <description>By default telnet is disabled in AS 2.1&lt;BR /&gt;&lt;BR /&gt;Thats because telnet uses clear text authentication. Passwords in clear text for all sniffers to see. I've seen it used against me on the public internet and its not pretty.&lt;BR /&gt;&lt;BR /&gt;What you should do is have your users use ssh instead of telnet. Secure authentication.&lt;BR /&gt;&lt;BR /&gt;Here is how to enable telnet:&lt;BR /&gt;&lt;BR /&gt;cd /etc/xinetd.d&lt;BR /&gt;vi telnet&lt;BR /&gt;&lt;BR /&gt;It looks like this:&lt;BR /&gt;&lt;BR /&gt;service telnet&lt;BR /&gt;{&lt;BR /&gt;        flags           = REUSE&lt;BR /&gt;        socket_type     = stream&lt;BR /&gt;        wait            = no&lt;BR /&gt;        user            = root&lt;BR /&gt;        server          = /usr/sbin/in.telnetd&lt;BR /&gt;        log_on_failure  += USERID&lt;BR /&gt;        disable         = yes&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;change disable = yes to :&lt;BR /&gt;&lt;BR /&gt;        disable         = no&lt;BR /&gt;&lt;BR /&gt;service xinetd restart&lt;BR /&gt;&lt;BR /&gt;You are now done. Do study implementing ssh. The client is free and it is much more secure.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.openssh.org" target="_blank"&gt;http://www.openssh.org&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Nov 2004 23:11:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412248#M14642</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-11-01T23:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412249#M14643</link>
      <description>Hi  &lt;BR /&gt;&lt;BR /&gt;   the above sentences are absolutely true . One  more thing  you should consider  if pam.d &lt;BR /&gt;is istalled  you can't login in to  system as a administrator  through the  telnet  session . for that  go to /etc/pam.d / edit the file login  in the fourth line you can find the following line change the word required to sufficient &lt;BR /&gt;&lt;BR /&gt;  session  required  /etc/security/pam_stack.so  service =system-auth</description>
      <pubDate>Mon, 01 Nov 2004 23:42:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412249#M14643</guid>
      <dc:creator>ramkumar</dc:creator>
      <dc:date>2004-11-01T23:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412250#M14644</link>
      <description>One simple command enables xinetd related service (including telnet):&lt;BR /&gt;chkconfig telnet on&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Nov 2004 01:48:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412250#M14644</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2004-11-02T01:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412251#M14645</link>
      <description>Thanks, but what about the FTP ?&lt;BR /&gt;&lt;BR /&gt;Ramkumar, the pam_stack.so does not exist in /etc/security/, it exists in /lib/security/. So that, the line to change (as it appears) into /etc/pam.d/login is:&lt;BR /&gt;&lt;BR /&gt;session    sufficient   /lib/security/pam_stack.so service=system-auth&lt;BR /&gt;&lt;BR /&gt;But I have modified and restarted the server and I cannot telnet with root user.&lt;BR /&gt;&lt;BR /&gt;Any other idea to telnet with root user?&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Nov 2004 10:30:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412251#M14645</guid>
      <dc:creator>Tonatiuh</dc:creator>
      <dc:date>2004-11-02T10:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412252#M14646</link>
      <description>to be able to telnet with root user -you must add the following to the /etc/securetty&lt;BR /&gt;pts/0&lt;BR /&gt;pts/1&lt;BR /&gt;pts/2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and so on....&lt;BR /&gt;I'd add at least until pts/20</description>
      <pubDate>Tue, 02 Nov 2004 10:43:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412252#M14646</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2004-11-02T10:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412253#M14647</link>
      <description>It is working! Thanks a lot!&lt;BR /&gt;&lt;BR /&gt;What about the FTP? how can I allow users to FTP to this server?</description>
      <pubDate>Tue, 02 Nov 2004 10:49:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412253#M14647</guid>
      <dc:creator>Tonatiuh</dc:creator>
      <dc:date>2004-11-02T10:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412254#M14648</link>
      <description>enable the 'wu-ftpd' service, in a similar fasion.</description>
      <pubDate>Tue, 02 Nov 2004 17:22:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412254#M14648</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-11-02T17:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412255#M14649</link>
      <description>This is my first time with Linux and I am really confused. Could you be more clear (detailed) ?</description>
      <pubDate>Tue, 02 Nov 2004 17:35:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412255#M14649</guid>
      <dc:creator>Tonatiuh</dc:creator>
      <dc:date>2004-11-02T17:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412256#M14650</link>
      <description>I just want to stress again that telnet is not a recommended connection method. And unless there is some obscure program really needing it, i would leave it _off_! and use SSH instead.&lt;BR /&gt;For transferring files, again if no program requires it, use SCP.&lt;BR /&gt;&lt;BR /&gt;Don't worry, clients for these are freely available on windows.</description>
      <pubDate>Wed, 03 Nov 2004 02:05:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412256#M14650</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2004-11-03T02:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412257#M14651</link>
      <description>hi tonautiuh,&lt;BR /&gt;&lt;BR /&gt;there is a simple way to enable or disable services in redhat linux. type ntsysv. in this tool you can select or deselct the services registered in redhat linux so you don't have to change configfiles like steven told you. but for telnet you have to add to /etc/securetty the pts/0, pts/1 ... lines for any concurent session. so if you want to allow 20 users to connect to your server and everyone opens two telnet sessions you have to add pts/0 to pts/39 to your /etc/securetty. the better way is to use ssh if it's possible for you because ssh is much more secure (passwords aren't transmitted plain text, they are encrypted).&lt;BR /&gt;&lt;BR /&gt;for ftp server you have to enalbe the vsftp in ntsysv and have a look at the following thread:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=698075" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=698075&lt;/A&gt;</description>
      <pubDate>Wed, 03 Nov 2004 03:48:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412257#M14651</guid>
      <dc:creator>Johannes Krackowizer_1</dc:creator>
      <dc:date>2004-11-03T03:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412258#M14652</link>
      <description>I want to join the chorus - avoid telnet/ftp if at all possible!&lt;BR /&gt;&lt;BR /&gt;RH install does not install these tools by default. You must select them.&lt;BR /&gt;&lt;BR /&gt;There is no difference to using telnet vs ssh - only the command syntax changes for the end user. Of course behind the scenes there is encryption. If the syntax is an issue the alias the commands.&lt;BR /&gt;&lt;BR /&gt;For windows, PUTTY is a free tool that can be downloaded from the net and the tools are already in binary form - no building.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 03 Nov 2004 14:29:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412258#M14652</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2004-11-03T14:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: telnet</title>
      <link>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412259#M14653</link>
      <description>Another tip. &lt;BR /&gt;&lt;BR /&gt;Starting a new telnet session can sometimes take a long time, sometimes ~30 sec to get a login prompt. &lt;BR /&gt;&lt;BR /&gt;This is often caused by the server wanting to do a reverse DNS lookup to find out who is connecting. &lt;BR /&gt;&lt;BR /&gt;If you are running DNS, check named and resolv.conf to find out how IP adresses are resolved.&lt;BR /&gt;&lt;BR /&gt;If you aren't running DNS, you can fix this just by listing all the machines in /etc/hosts. Note that you don't have to be accurate about the names: I often use the ip adress with "_" substituted for the "."'s, like "host_192_168_2_3" and so on. A simple script: &lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;x=1&lt;BR /&gt;while [ $x -lt 255 ]&lt;BR /&gt;do&lt;BR /&gt;echo "192.168.0.$x   host_$x"&lt;BR /&gt;x=$((x + 1 ))&lt;BR /&gt;done &amp;gt;&amp;gt; /etc/hosts&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Nov 2004 08:32:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/telnet/m-p/3412259#M14653</guid>
      <dc:creator>Karsten Breivik_1</dc:creator>
      <dc:date>2004-11-29T08:32:06Z</dc:date>
    </item>
  </channel>
</rss>

