<?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 Aging in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351360#M192528</link>
    <description>You can use /etc/default/security file for this. &lt;BR /&gt;&lt;BR /&gt;# Standard and Shadow modes only: number&lt;BR /&gt;# of days that passwords are valid&lt;BR /&gt;# PASSWORD_MAXDAYS=175&lt;BR /&gt;# PASSWORD_MINDAYS=14&lt;BR /&gt;&lt;BR /&gt;Or we can do it with passwd command.&lt;BR /&gt;&lt;BR /&gt;Change the password expiration date of user to 42 days in the files&lt;BR /&gt;      repository:&lt;BR /&gt;&lt;BR /&gt;     passwd -r files -x 42 user&lt;BR /&gt;&lt;BR /&gt;See passwd man page EXAMPLES part to know more.&lt;BR /&gt;</description>
    <pubDate>Fri, 06 Aug 2004 10:18:28 GMT</pubDate>
    <dc:creator>Muthukumar_5</dc:creator>
    <dc:date>2004-08-06T10:18:28Z</dc:date>
    <item>
      <title>Password Aging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351358#M192526</link>
      <description>What is the easiest way to implement a password ageing policy on an HPUX 11 box? &lt;BR /&gt;I would like to set up a password policy that says users must change their passwords every X number of days. &lt;BR /&gt;&lt;BR /&gt;Thanks for all your help as I move from being a Windows Admin to a Unix Admin. &lt;BR /&gt;</description>
      <pubDate>Fri, 06 Aug 2004 09:23:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351358#M192526</guid>
      <dc:creator>Jerry Gamblin</dc:creator>
      <dc:date>2004-08-06T09:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Password Aging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351359#M192527</link>
      <description>There are a couple of ways.&lt;BR /&gt;&lt;BR /&gt;One is to run some passwd commands on the user id right after its created setting its expiration and such. I'm attaching utility secript that does that. Pete Randall wrote the original, though I doubt he recognizes it.&lt;BR /&gt;&lt;BR /&gt;You can use sam system security policies and set global policies for the system. root access is required for this.&lt;BR /&gt;&lt;BR /&gt;There are other ways to do it as well.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 06 Aug 2004 09:34:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351359#M192527</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-08-06T09:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Password Aging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351360#M192528</link>
      <description>You can use /etc/default/security file for this. &lt;BR /&gt;&lt;BR /&gt;# Standard and Shadow modes only: number&lt;BR /&gt;# of days that passwords are valid&lt;BR /&gt;# PASSWORD_MAXDAYS=175&lt;BR /&gt;# PASSWORD_MINDAYS=14&lt;BR /&gt;&lt;BR /&gt;Or we can do it with passwd command.&lt;BR /&gt;&lt;BR /&gt;Change the password expiration date of user to 42 days in the files&lt;BR /&gt;      repository:&lt;BR /&gt;&lt;BR /&gt;     passwd -r files -x 42 user&lt;BR /&gt;&lt;BR /&gt;See passwd man page EXAMPLES part to know more.&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Aug 2004 10:18:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351360#M192528</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-08-06T10:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Password Aging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351361#M192529</link>
      <description>Steve,&lt;BR /&gt;&lt;BR /&gt;I was going to proceed with changing the password policy through SAM but I got an error about a turning it into a trusted database (see attached). Is it a bad idea to do this? Could this break something else on the machine or is this a suggested HP procedure.</description>
      <pubDate>Fri, 06 Aug 2004 10:22:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351361#M192529</guid>
      <dc:creator>Jerry Gamblin</dc:creator>
      <dc:date>2004-08-06T10:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Password Aging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351362#M192530</link>
      <description>This information can be set using the passwd command.  Chech the man page for details.&lt;BR /&gt;----------------&lt;BR /&gt;If you are not using a shadow file, this information is addeded to the end of the password field:&lt;BR /&gt;&lt;BR /&gt;user1:PPPPPPPPPPPPP,AMWW:uid:gid:user_name &lt;BR /&gt;Where: &lt;BR /&gt;A (1 character) - # of weeks for which a password is valid&lt;BR /&gt;M (1 character) - # min number of week which must pass before a user can change their password.&lt;BR /&gt;WW (2 character) - # of weeks since password was changed.  Weeks are counted from the beginning of 1970.&lt;BR /&gt;&lt;BR /&gt;There are 64 valid characters that are used in the password field.  Each character is used to represent a digit.  The valid characters are:  â  .â   for 0, / for 1, A through Z, for 12 through 37, and a through z for 38 through 63.  &lt;BR /&gt;&lt;BR /&gt;So, for example:&lt;BR /&gt;user1:PPPPPPPPPPPPP,O/7Q:uid:gid:user_name &lt;BR /&gt;Password is valid 26 weeks.&lt;BR /&gt;Password can't be changed for 1 week.&lt;BR /&gt;Password was last changed 7/8/04&lt;BR /&gt;&lt;BR /&gt;----------------&lt;BR /&gt;If you are using a shadow file, setting up password aging is much simpler:&lt;BR /&gt;user1:PPPPPPPPPPPPP,ddddd,m,xxx,ww:::&lt;BR /&gt;&lt;BR /&gt;dddddd - # of days since password was changed.  Weeks are counted from the beginning of 1970.&lt;BR /&gt;&lt;BR /&gt;m - # min number of days which must pass before a user can change their password.&lt;BR /&gt;&lt;BR /&gt;xxxx - # of days for which a password is valid&lt;BR /&gt;ww - # of days a user will receive warning messages prior to the password expiring.&lt;BR /&gt;---------------------&lt;BR /&gt;&lt;BR /&gt;The command:&lt;BR /&gt;&lt;BR /&gt;password -s -a &lt;BR /&gt;&lt;BR /&gt;will show you the aging information set for your users:&lt;BR /&gt;&lt;BR /&gt;user1  PS  07/08/04   7  1</description>
      <pubDate>Fri, 06 Aug 2004 10:31:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351362#M192530</guid>
      <dc:creator>john kingsley</dc:creator>
      <dc:date>2004-08-06T10:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Password Aging</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351363#M192531</link>
      <description>Hai,&lt;BR /&gt;&lt;BR /&gt; You are trying to change your system as Truseted one. I hope you have a knowledge on that. &lt;BR /&gt;&lt;BR /&gt; It will make passwd file with * as passwd in every passwd. It will make your system as  very secure. &lt;BR /&gt;&lt;BR /&gt; If you put yes it will change your system to truseted one. &lt;BR /&gt;&lt;BR /&gt; See more about the difference between them&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=638058" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=638058&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt; If you want to use your system as normal one with this requirement then use passwd command settings / /etc/default/security file settings&lt;BR /&gt;&lt;BR /&gt;Muthu.</description>
      <pubDate>Fri, 06 Aug 2004 10:35:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-aging/m-p/3351363#M192531</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-08-06T10:35:45Z</dc:date>
    </item>
  </channel>
</rss>

