<?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 list in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448585#M208447</link>
    <description>If you want to restrict incomming telnet, list IPs in /var/adm/inetd.sec as following:&lt;BR /&gt;#telnet deny 10.0.61.* 10.0.0.99&lt;BR /&gt;#ftp deny 10.0.61.* 10.0.95.* 10.0.0.99&lt;BR /&gt;telnet allow 10.0.91.* 10.0.96.102-109 10.0.96.113-115&lt;BR /&gt;and then issue command;&lt;BR /&gt;#inetd -c&lt;BR /&gt;If you want to disable telnet, just comment this line in /etc/serivice &lt;BR /&gt;&lt;BR /&gt;ftp-data      20/tcp                 # File Transfer Protocol (Data)&lt;BR /&gt;ftp           21/tcp                 # File Transfer Protocol (Control)&lt;BR /&gt;#telnet        23/tcp                 # Virtual Terminal Protocol&lt;BR /&gt;smtp          25/tcp                 # Simple Mail Transfer Protocol&lt;BR /&gt;&lt;BR /&gt;#/sbin/init.d/inetd stop&lt;BR /&gt;#/sbin/init.d/inetd start&lt;BR /&gt;</description>
    <pubDate>Wed, 22 Dec 2004 01:39:51 GMT</pubDate>
    <dc:creator>Nguyen Anh Tien</dc:creator>
    <dc:date>2004-12-22T01:39:51Z</dc:date>
    <item>
      <title>Telnet access list</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448581#M208443</link>
      <description>I want to restrict incoming telnet to my server. It is running HP-UX 11i. I will only telnet from that server.</description>
      <pubDate>Tue, 21 Dec 2004 23:07:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448581#M208443</guid>
      <dc:creator>M. Tariq Ayub</dc:creator>
      <dc:date>2004-12-21T23:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Telnet access list</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448582#M208444</link>
      <description>If you are only going to telnet OUT from that server and NOT IN, then comment the telnetd line from /etc/inetd.conf (or delete it) and run an 'inetd -c' to force inetd to re-read its config files.</description>
      <pubDate>Tue, 21 Dec 2004 23:09:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448582#M208444</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2004-12-21T23:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Telnet access list</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448583#M208445</link>
      <description>If you want to allow sb telnet from special host maybe you should change your network settings in the router, add some access-list&lt;BR /&gt;&lt;BR /&gt;wei</description>
      <pubDate>Wed, 22 Dec 2004 00:07:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448583#M208445</guid>
      <dc:creator>stone_wei</dc:creator>
      <dc:date>2004-12-22T00:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Telnet access list</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448584#M208446</link>
      <description>Another way is to use IPFilter to block all incoming&lt;BR /&gt;telnets and allow only outgoing telnets. Configure &lt;BR /&gt;the following IPFilter rules:&lt;BR /&gt;&lt;BR /&gt;block in quick proto tcp from any to any port = 23&lt;BR /&gt;pass out quick proto tcp from any to any port = 23 flags S keep state&lt;BR /&gt;&lt;BR /&gt;One advantage of using IPFilter over the other&lt;BR /&gt;methods already suggested is, you could choose&lt;BR /&gt;which IP addresses / IP range to allow and which &lt;BR /&gt;to block. You can even control how many telnet&lt;BR /&gt;sessions you want to allow from a particular &lt;BR /&gt;host.&lt;BR /&gt;&lt;BR /&gt;- Biswajit&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Dec 2004 01:04:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448584#M208446</guid>
      <dc:creator>Biswajit Tripathy</dc:creator>
      <dc:date>2004-12-22T01:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Telnet access list</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448585#M208447</link>
      <description>If you want to restrict incomming telnet, list IPs in /var/adm/inetd.sec as following:&lt;BR /&gt;#telnet deny 10.0.61.* 10.0.0.99&lt;BR /&gt;#ftp deny 10.0.61.* 10.0.95.* 10.0.0.99&lt;BR /&gt;telnet allow 10.0.91.* 10.0.96.102-109 10.0.96.113-115&lt;BR /&gt;and then issue command;&lt;BR /&gt;#inetd -c&lt;BR /&gt;If you want to disable telnet, just comment this line in /etc/serivice &lt;BR /&gt;&lt;BR /&gt;ftp-data      20/tcp                 # File Transfer Protocol (Data)&lt;BR /&gt;ftp           21/tcp                 # File Transfer Protocol (Control)&lt;BR /&gt;#telnet        23/tcp                 # Virtual Terminal Protocol&lt;BR /&gt;smtp          25/tcp                 # Simple Mail Transfer Protocol&lt;BR /&gt;&lt;BR /&gt;#/sbin/init.d/inetd stop&lt;BR /&gt;#/sbin/init.d/inetd start&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Dec 2004 01:39:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-access-list/m-p/3448585#M208447</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2004-12-22T01:39:51Z</dc:date>
    </item>
  </channel>
</rss>

