<?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: inetd question in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679882#M52825</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;This particular line in /etc/inetd.conf file is responsible for running the rlogin service available at the TCP port number 513 as defined in the /etc/services.&lt;BR /&gt;&lt;BR /&gt;i.e.&lt;BR /&gt;Users can do rlogin to your server just because of this line.&lt;BR /&gt;&lt;BR /&gt;-Vijay</description>
    <pubDate>Mon, 11 Mar 2002 10:32:33 GMT</pubDate>
    <dc:creator>K.Vijayaragavan.</dc:creator>
    <dc:date>2002-03-11T10:32:33Z</dc:date>
    <item>
      <title>inetd question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679878#M52821</link>
      <description>login        stream tcp nowait root /usr/lbin/rlogind  rlogind&lt;BR /&gt;&lt;BR /&gt;i cant understand it exactly .</description>
      <pubDate>Mon, 11 Mar 2002 02:28:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679878#M52821</guid>
      <dc:creator>thebeatlesguru</dc:creator>
      <dc:date>2002-03-11T02:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: inetd question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679879#M52822</link>
      <description />
      <pubDate>Mon, 11 Mar 2002 02:52:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679879#M52822</guid>
      <dc:creator>Kenny Chau</dc:creator>
      <dc:date>2002-03-11T02:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: inetd question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679880#M52823</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;This line of configuration allows you to &lt;BR /&gt;'rlogin' from another server. If there is&lt;BR /&gt;a '.rhosts' fil ein the users home directory&lt;BR /&gt;that can effectively login to your server&lt;BR /&gt;without a password. If you wish to secure&lt;BR /&gt;your server better, you could comment this&lt;BR /&gt;line out of the '/etc/inetd.conf' file.&lt;BR /&gt;&lt;BR /&gt;Service name (login) socket type (stream)&lt;BR /&gt;Protocol (tcp) User (root) path to program&lt;BR /&gt;&lt;BR /&gt;The entry of 'root' means that this service&lt;BR /&gt;is capable of allowing 'root' to login to&lt;BR /&gt;your server without a password if there is&lt;BR /&gt;a 'rhosts' file existing in 'root's' home&lt;BR /&gt;directory with the correct information&lt;BR /&gt;included.&lt;BR /&gt;&lt;BR /&gt;Most, if not all of this information can be&lt;BR /&gt;found on the 'inetd.conf' man page.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;-Michael</description>
      <pubDate>Mon, 11 Mar 2002 02:52:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679880#M52823</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-03-11T02:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: inetd question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679881#M52824</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;rlogin is just like a telnet program which allows users to login to their servers ..&lt;BR /&gt;&lt;BR /&gt;telnet       stream tcp nowait root /usr/lbin/telnetd  telnetd &lt;BR /&gt;login        stream tcp nowait root /usr/lbin/rlogind  rlogind&lt;BR /&gt;&lt;BR /&gt;telnet &lt;SERVERNAME&gt;&lt;BR /&gt;rlogin &lt;SERVERNAME&gt;&lt;BR /&gt;&lt;BR /&gt;Software like Exceed uses these types of start method to login to the servers.&lt;BR /&gt;&lt;BR /&gt;If you would want your users to only use telnet to login to their servers you could comment the rlogin line from the /etc/inetd.conf file and do a Kill -HUP &lt;PIDOFINETDDAEMON&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;egrep 'telnet|rlogin' /etc/inetd.conf&lt;BR /&gt;telnet       stream tcp nowait root /usr/lbin/telnetd  telnetd &lt;BR /&gt;#login        stream tcp nowait root /usr/lbin/rlogind  rlogind&lt;BR /&gt;&lt;BR /&gt;&amp;gt;ps -ef|grep inetd&lt;BR /&gt; root   772     1  0  Jan  2  ?         1:56 /usr/sbin/inetd&lt;BR /&gt;&lt;BR /&gt;&amp;gt;kill -1 772&lt;BR /&gt;&lt;BR /&gt;This will re-read the inetd.conf file, and now users could use only telnet to login to your server.&lt;BR /&gt;&lt;BR /&gt;The other popular start methods apart from telnet and rlogin are:&lt;BR /&gt;rexec&lt;BR /&gt;rsh&lt;BR /&gt;ssh (needs different setup)&lt;BR /&gt;&lt;BR /&gt;As stated earlier man inetd will give you a lot of information.&lt;BR /&gt;&lt;BR /&gt;Hope this helps !&lt;BR /&gt;&lt;BR /&gt;-Shabu&lt;BR /&gt;&amp;gt;Kill -HUP&lt;/PIDOFINETDDAEMON&gt;&lt;/SERVERNAME&gt;&lt;/SERVERNAME&gt;</description>
      <pubDate>Mon, 11 Mar 2002 06:49:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679881#M52824</guid>
      <dc:creator>SHABU KHAN</dc:creator>
      <dc:date>2002-03-11T06:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: inetd question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679882#M52825</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;This particular line in /etc/inetd.conf file is responsible for running the rlogin service available at the TCP port number 513 as defined in the /etc/services.&lt;BR /&gt;&lt;BR /&gt;i.e.&lt;BR /&gt;Users can do rlogin to your server just because of this line.&lt;BR /&gt;&lt;BR /&gt;-Vijay</description>
      <pubDate>Mon, 11 Mar 2002 10:32:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inetd-question/m-p/2679882#M52825</guid>
      <dc:creator>K.Vijayaragavan.</dc:creator>
      <dc:date>2002-03-11T10:32:33Z</dc:date>
    </item>
  </channel>
</rss>

