<?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: Password ageing in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098807#M443765</link>
    <description>for non-trusted systems:&lt;BR /&gt;&lt;BR /&gt;passwd -s -a &lt;BR /&gt;&lt;BR /&gt;will return something like&lt;BR /&gt;&lt;BR /&gt;l00s7m PS 01/31/08 14 56&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;which indicates passwd set (PS) on 01/31/08, can't change it in less than 14 days, and must change it by 56 days.&lt;BR /&gt;"man passwd" for more info&lt;BR /&gt;&lt;BR /&gt;for trusted systems:&lt;BR /&gt;man getprpw, modprw, modprdef and getprdef for more</description>
    <pubDate>Wed, 19 Mar 2008 17:04:25 GMT</pubDate>
    <dc:creator>OldSchool</dc:creator>
    <dc:date>2008-03-19T17:04:25Z</dc:date>
    <item>
      <title>Password ageing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098806#M443764</link>
      <description>Hi all&lt;BR /&gt;&lt;BR /&gt;Can you please help me to find the password ageing for all the users in HP UX .&lt;BR /&gt;Example in Solaris we use the /etc/shadow file to check the ageing of user account.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Woodman</description>
      <pubDate>Wed, 19 Mar 2008 16:46:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098806#M443764</guid>
      <dc:creator>woodman</dc:creator>
      <dc:date>2008-03-19T16:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Password ageing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098807#M443765</link>
      <description>for non-trusted systems:&lt;BR /&gt;&lt;BR /&gt;passwd -s -a &lt;BR /&gt;&lt;BR /&gt;will return something like&lt;BR /&gt;&lt;BR /&gt;l00s7m PS 01/31/08 14 56&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;which indicates passwd set (PS) on 01/31/08, can't change it in less than 14 days, and must change it by 56 days.&lt;BR /&gt;"man passwd" for more info&lt;BR /&gt;&lt;BR /&gt;for trusted systems:&lt;BR /&gt;man getprpw, modprw, modprdef and getprdef for more</description>
      <pubDate>Wed, 19 Mar 2008 17:04:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098807#M443765</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2008-03-19T17:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Password ageing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098808#M443766</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Look at the 'logins' command; specifically the '-x' switch output:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B3921-60631/logins.1M.html" target="_blank"&gt;http://docs.hp.com/en/B3921-60631/logins.1M.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 19 Mar 2008 17:06:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098808#M443766</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-03-19T17:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Password ageing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098809#M443767</link>
      <description>There are several setups for security in HP-UX including a shadow passwd file. Your system may be standard, Trusted, shadow, or for new systems, the enhanced security option.&lt;BR /&gt; &lt;BR /&gt;So use the passwd -s &lt;USER&gt; command to see the current aging:&lt;BR /&gt; &lt;BR /&gt;passwd -s billh&lt;BR /&gt;billh  PS    03/03/08    21  35  7&lt;BR /&gt; &lt;BR /&gt;where 21=days before change is allowed, 35=days until expiration, 7=days when warnings start.&lt;BR /&gt; &lt;BR /&gt;From the passwd man page:&lt;BR /&gt;                      &lt;BR /&gt;The format of the display will be:&lt;BR /&gt; &lt;BR /&gt;name status    mm/dd/yy  min  max  warn&lt;BR /&gt; &lt;BR /&gt;or, if password aging information is not present:&lt;BR /&gt; &lt;BR /&gt;name status&lt;BR /&gt; &lt;BR /&gt;where status means: PS =passworded; LK =locked; and NP=no password.&lt;BR /&gt; &lt;BR /&gt;This works for all types of security methods. To get a list of all users:&lt;BR /&gt; &lt;BR /&gt;for MYID in $(cut -f1 -d: /etc/passwd)&lt;BR /&gt;do&lt;BR /&gt;passwd -s $MYID&lt;BR /&gt;done&lt;/USER&gt;</description>
      <pubDate>Wed, 19 Mar 2008 17:06:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098809#M443767</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2008-03-19T17:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Password ageing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098810#M443768</link>
      <description>Thanks all for the help.</description>
      <pubDate>Wed, 19 Mar 2008 17:40:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-ageing/m-p/5098810#M443768</guid>
      <dc:creator>woodman</dc:creator>
      <dc:date>2008-03-19T17:40:38Z</dc:date>
    </item>
  </channel>
</rss>

