<?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: Display Locking in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431058#M3054</link>
    <description>Chris,&lt;BR /&gt;&lt;BR /&gt;Where did you get that information? I looked in the manpages on 10.20 and 11.00 but did not find anything.&lt;BR /&gt;&lt;BR /&gt;I also tried it out, but the connection stays open, even after the time expired.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Rik&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 17 Jul 2000 09:55:14 GMT</pubDate>
    <dc:creator>RikTytgat</dc:creator>
    <dc:date>2000-07-17T09:55:14Z</dc:date>
    <item>
      <title>Display Locking</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431055#M3051</link>
      <description>Our users run applications of a unix box via telnet session.&lt;BR /&gt;Is there a way to lock the users telnet session if there has been no keyboard input for a certain amount of time ?&lt;BR /&gt;When the user tries to enter something it asks for his/her unix password in&lt;BR /&gt; order to continue working&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2000 08:27:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431055#M3051</guid>
      <dc:creator>Vishal Phlad</dc:creator>
      <dc:date>2000-07-17T08:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Display Locking</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431056#M3052</link>
      <description>I don't think this is possible.&lt;BR /&gt;&lt;BR /&gt;There is an alternative though. It is possible to log the user off after a predefined period of inactivity. All shells I know off support this feature (sh-posix, sh, ksh, bash).&lt;BR /&gt;&lt;BR /&gt;When the environment variable TMOUT is set and has a value greater than 0, the shell terminates after waiting the number of seconds for user input.&lt;BR /&gt;&lt;BR /&gt;If your users are using CDE, it is possible to lock the screen after a predefined period of inactivity, after which a password is required.&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Rik</description>
      <pubDate>Mon, 17 Jul 2000 08:54:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431056#M3052</guid>
      <dc:creator>RikTytgat</dc:creator>
      <dc:date>2000-07-17T08:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Display Locking</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431057#M3053</link>
      <description>You can add session time at the end of the telnet line in /etc/inetd.conf file.&lt;BR /&gt;Eg telnet  stream tcp nowait root /usr/sbin/telnetd telentd -t1200&lt;BR /&gt;(1200 is in seconds)&lt;BR /&gt;&lt;BR /&gt;Cheers!&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2000 09:27:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431057#M3053</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-07-17T09:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Display Locking</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431058#M3054</link>
      <description>Chris,&lt;BR /&gt;&lt;BR /&gt;Where did you get that information? I looked in the manpages on 10.20 and 11.00 but did not find anything.&lt;BR /&gt;&lt;BR /&gt;I also tried it out, but the connection stays open, even after the time expired.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Rik&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2000 09:55:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431058#M3054</guid>
      <dc:creator>RikTytgat</dc:creator>
      <dc:date>2000-07-17T09:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Display Locking</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431059#M3055</link>
      <description>From a security perspective using the TMOUT variable in the /etc/profile is probably the safest way to achieve this task. Example:&lt;BR /&gt;TMOUT=6000;export TMOUT. The number 6000 is in seconds.</description>
      <pubDate>Tue, 18 Jul 2000 14:40:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431059#M3055</guid>
      <dc:creator>Account Not Used</dc:creator>
      <dc:date>2000-07-18T14:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Display Locking</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431060#M3056</link>
      <description>&lt;BR /&gt;You can add following lines in /etc/profile&lt;BR /&gt;TMOUT=600&lt;BR /&gt;readonly TMOUT&lt;BR /&gt;This way the TMOUT parameter is made readonly and user can not change it at command prompt.&lt;BR /&gt;&lt;BR /&gt;Prashant.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Jul 2000 15:08:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/display-locking/m-p/2431060#M3056</guid>
      <dc:creator>Deshpande Prashant</dc:creator>
      <dc:date>2000-07-18T15:08:23Z</dc:date>
    </item>
  </channel>
</rss>

