<?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 Remote login user characteristics in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383380#M747409</link>
    <description>HI everyone,&lt;BR /&gt;&lt;BR /&gt;I've been doing some searches and found a couple of threads similar to this one : &lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=469590" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=469590&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;but unfortunately, I was looking more for somehting that equates to the "REMOTE LOGIN ALLOWED" characteristic on AIX.  &lt;BR /&gt;&lt;BR /&gt;Does anyone know if that is AIX specific.. or is there a file somewhere that could contain this security feature? &lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Marco</description>
    <pubDate>Tue, 21 Sep 2004 10:02:17 GMT</pubDate>
    <dc:creator>Marco Santerre</dc:creator>
    <dc:date>2004-09-21T10:02:17Z</dc:date>
    <item>
      <title>Remote login user characteristics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383380#M747409</link>
      <description>HI everyone,&lt;BR /&gt;&lt;BR /&gt;I've been doing some searches and found a couple of threads similar to this one : &lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=469590" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=469590&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;but unfortunately, I was looking more for somehting that equates to the "REMOTE LOGIN ALLOWED" characteristic on AIX.  &lt;BR /&gt;&lt;BR /&gt;Does anyone know if that is AIX specific.. or is there a file somewhere that could contain this security feature? &lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Marco</description>
      <pubDate>Tue, 21 Sep 2004 10:02:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383380#M747409</guid>
      <dc:creator>Marco Santerre</dc:creator>
      <dc:date>2004-09-21T10:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Remote login user characteristics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383381#M747410</link>
      <description>If you can explain us what exactly your "REMOTE LOGIN ALLOWED" achieves in AIX, I am sure forum folks can come up with good suggestions :-)</description>
      <pubDate>Tue, 21 Sep 2004 10:22:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383381#M747410</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-09-21T10:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Remote login user characteristics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383382#M747411</link>
      <description>I apologize for not explaining.. &lt;BR /&gt;&lt;BR /&gt;The remote login characteristic in AIX basically stops someone from logging in using that User ID from anywhere remote (rsh, telnet, etc.. ) but doesn't stop it from local (ex. console, and applications using that User ID) &lt;BR /&gt;&lt;BR /&gt;As I mentionned I followed a couple of threads that discussed forcing su for generic IDs.. and it goes along that line but, in AIX, they get that with a User characteristic.. was wondring if the same thing can be found on HP-UX..</description>
      <pubDate>Tue, 21 Sep 2004 10:44:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383382#M747411</guid>
      <dc:creator>Marco Santerre</dc:creator>
      <dc:date>2004-09-21T10:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remote login user characteristics</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383383#M747412</link>
      <description>For root, you have /etc/securetty file that you can use to restrict the terminals from which root is allowed to login.&lt;BR /&gt;&lt;BR /&gt;But for other normal users, there is no direct straight-forward way to achieve this.&lt;BR /&gt;&lt;BR /&gt;You might have to do little scripting.&lt;BR /&gt;&lt;BR /&gt;You can try somehting like this&lt;BR /&gt;&lt;BR /&gt;# vi /etc/profile&lt;BR /&gt;..&lt;BR /&gt;..&lt;BR /&gt;grep -q "^$LOGNAME" /etc/RES_USRS &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;if [ $? -eq 0 ]&lt;BR /&gt;then&lt;BR /&gt;  grep "^$LOGNAME" /etc/RES_USRS | grep -q `tty` &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;  if [ $? -ne 0 ]&lt;BR /&gt;  then&lt;BR /&gt;    echo "User $LOGNAME is not allowed to login from Terminal: `tty`"&lt;BR /&gt;    exit 1&lt;BR /&gt;  fi&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;# vi /etc/RES_USRS&lt;BR /&gt;user1 /dev/console /dev/term01 /dev/term02&lt;BR /&gt;user2 /dev/console&lt;BR /&gt;user3 /dev/term03&lt;BR /&gt;..&lt;BR /&gt;..&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;But note, if the user's login shell is CSH, /etc/profile wont be executed and thus the user can remote login to the system.&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Sep 2004 11:18:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-login-user-characteristics/m-p/3383383#M747412</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-09-21T11:18:45Z</dc:date>
    </item>
  </channel>
</rss>

