<?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 access in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324489#M187989</link>
    <description>surefire way of doing this is what Sri explained above. In digest form :&lt;BR /&gt;&lt;BR /&gt;vi /var/adm/inetd.sec&lt;BR /&gt;... edit line starting with telnet&lt;BR /&gt;... if you do not have such a line create one&lt;BR /&gt;... add allowed ip addresses to this line&lt;BR /&gt;... save &amp;amp; exit&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/inetd -k&lt;BR /&gt;/usr/sbin/inetd -l (if you don't want logging enabled, drop -l option)&lt;BR /&gt;&lt;BR /&gt;I do not trust "inetd -c" to re-read the conf files. kill and restart is better in my opinion&lt;BR /&gt;</description>
    <pubDate>Tue, 06 Jul 2004 15:58:39 GMT</pubDate>
    <dc:creator>Mel Burslan</dc:creator>
    <dc:date>2004-07-06T15:58:39Z</dc:date>
    <item>
      <title>telnet access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324486#M187986</link>
      <description>I like to know how to restrict telnet access to particular server(planning on allowing logins through ssh only).&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Jul 2004 15:24:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324486#M187986</guid>
      <dc:creator>subhashni</dc:creator>
      <dc:date>2004-07-06T15:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: telnet access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324487#M187987</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You will need to use /var/adm/inetd.sec file. Examples are given in that file. If you want to allow access to only one server like 20.20.20.20 then add the following line&lt;BR /&gt;telnet allow 20.20.20.20&lt;BR /&gt;&lt;BR /&gt;and if you want to allow all the servers in 20.20.10 subnet plus 20.20.20.20, modify it as&lt;BR /&gt;&lt;BR /&gt;telnet allow 20.20.20.20 20.20.10&lt;BR /&gt;&lt;BR /&gt;Refresh inetd after the changes.&lt;BR /&gt;&lt;BR /&gt;inetd -c&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Tue, 06 Jul 2004 15:32:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324487#M187987</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-07-06T15:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: telnet access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324488#M187988</link>
      <description>to totally remove telnet service Comment the following line in /etc/inetd.conf&lt;BR /&gt;#telnet       stream tcp nowait root /usr/lbin/telnetd  telnetd&lt;BR /&gt;and then HUP the server inetd -c&lt;BR /&gt;&lt;BR /&gt;I also like reassigning the telnet service to a different port in etc services.&lt;BR /&gt;Like 666&lt;BR /&gt;telnet        666/tcp                 &lt;BR /&gt;and "inetd -c"&lt;BR /&gt;to access "telnet servername 666"</description>
      <pubDate>Tue, 06 Jul 2004 15:51:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324488#M187988</guid>
      <dc:creator>Joy Orton</dc:creator>
      <dc:date>2004-07-06T15:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: telnet access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324489#M187989</link>
      <description>surefire way of doing this is what Sri explained above. In digest form :&lt;BR /&gt;&lt;BR /&gt;vi /var/adm/inetd.sec&lt;BR /&gt;... edit line starting with telnet&lt;BR /&gt;... if you do not have such a line create one&lt;BR /&gt;... add allowed ip addresses to this line&lt;BR /&gt;... save &amp;amp; exit&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/inetd -k&lt;BR /&gt;/usr/sbin/inetd -l (if you don't want logging enabled, drop -l option)&lt;BR /&gt;&lt;BR /&gt;I do not trust "inetd -c" to re-read the conf files. kill and restart is better in my opinion&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Jul 2004 15:58:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324489#M187989</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2004-07-06T15:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: telnet access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324490#M187990</link>
      <description>To completely remove it simply remove the telnet line from inetd.conf and then stop and restart inetd as shown in the above post.&lt;BR /&gt;&lt;BR /&gt;This is my recommendation.  Do not allow telnet, unless you absolutely have to.&lt;BR /&gt;&lt;BR /&gt;The next option is to Sri outlines, and restrict access via telnet from specific IP addresses or ranges.  This is an ok solution, but is not as good as completely removing telnet.&lt;BR /&gt;&lt;BR /&gt;Sean&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Jul 2004 16:49:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324490#M187990</guid>
      <dc:creator>Sean OB_1</dc:creator>
      <dc:date>2004-07-06T16:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: telnet access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324491#M187991</link>
      <description>Thanks for all of your sugg* .Thanks.&lt;BR /&gt;&lt;BR /&gt;Here is a question which is not related to this post. But pls help, i need your advice.&lt;BR /&gt;In a server /etc/services,/etc/inetd.conf everything look good for in.telnetd.But in.telnetd is not running.Is there anyway to enable this or only reboot helps.&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Tue, 06 Jul 2004 17:20:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324491#M187991</guid>
      <dc:creator>subhashni</dc:creator>
      <dc:date>2004-07-06T17:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: telnet access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324492#M187992</link>
      <description>If your talking about the 'telnet' daemon (telnetd). telnet requests listen on port 23 and when the request is made, and is successful a telnetd will spawn for each granted session using inetd daemon as it's master.&lt;BR /&gt;&lt;BR /&gt;If the telnet entry is commented out in /etc/inetd.conf it can be reinstated by uncommenting the line and running 'inetd -c'</description>
      <pubDate>Tue, 06 Jul 2004 17:32:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324492#M187992</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-07-06T17:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: telnet access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324493#M187993</link>
      <description>Hai,&lt;BR /&gt;&lt;BR /&gt; If you want to restrict the telnet access fully,then uncomment the service in inetd.conf or to give the specific access on telnet use tcpwrapper application.&lt;BR /&gt;&lt;BR /&gt; If you are planning for secure telnetd with in.telnetd then, we have to configure the pam.conf to support that authentication.&lt;BR /&gt;&lt;BR /&gt; Edit the pam.conf file for UNIX authentication, account management, session&lt;BR /&gt;     management, and password management modules. &lt;BR /&gt;&lt;BR /&gt; Check the unix in.telnetd+1M man page to more about the authentication with in.telnetd.&lt;BR /&gt;&lt;BR /&gt; &lt;A href="http://bama.ua.edu/cgi-bin/man-cgi?in.telnetd+1M" target="_blank"&gt;http://bama.ua.edu/cgi-bin/man-cgi?in.telnetd+1M&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Muthukumar.</description>
      <pubDate>Tue, 06 Jul 2004 23:00:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access/m-p/3324493#M187993</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-07-06T23:00:38Z</dc:date>
    </item>
  </channel>
</rss>

