- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Password expiration on untrusted systems
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2004 04:57 AM
тАО01-27-2004 04:57 AM
I read most of the forum messages on this issue but I haven't found info on when current passwords will expire once expiration begins. For example, will passwords expire in (for instance) 90 days once expiration is set on the system or would passwords expire for each user after 90 days since their last password change?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2004 05:03 AM
тАО01-27-2004 05:03 AM
Re: Password expiration on untrusted systems
required between password changes. This prevents users from
changing their password and then changing it back immediately
to avoid memorizing a new password.
The expiration time of a password specifies a time after which
a user must change the password at login.
The warning time specifies the time before expiration when a
warning will be issued.
The lifetime of a password specifies the time at which the account
associated with the password is locked if the password is not
changed. Once an account is locked, only the system administrator
can unlock it. Once unlocked, the password must still be changed
before the user can log into the account.
The expiration time and lifetime values are reset when a password
is changed. A lifetime of zero specifies no password aging; in this
case, the other password aging times have no effect.
This is from KB...
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2004 05:05 AM
тАО01-27-2004 05:05 AM
Re: Password expiration on untrusted systems
Take a look at the man page for useradd. The -e option specifies the expire time.
Also take a look at /etc/default/useradd which as it suggests is the defaults file for useradd values.
I think that's the only option outside of a trusted system.
Regards,
Dave.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2004 05:09 AM
тАО01-27-2004 05:09 AM
SolutionRead the man page for passwd for more details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2004 05:18 AM
тАО01-27-2004 05:18 AM
Re: Password expiration on untrusted systems
this command lets you manipulate after the user is created.
The variable names are self explanatory.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2004 06:05 AM
тАО01-27-2004 06:05 AM
Re: Password expiration on untrusted systems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2004 06:19 AM
тАО01-27-2004 06:19 AM
Re: Password expiration on untrusted systems
David- I am able to set min max warn from a command line using passwd in an untrusted system. However I am using Shadow Password which may allow that to happen. There is also the option with Shadow Passwords to modify the /etc/defaults/security file and assign specific days to variables for min max warn and others.
Shiju- It looks like the real answer to my question is that when password expiration is implemented, the count starts from that point. Unless I passwd -f it will not require the users to change their password.
For example
$ passwd -s jvirden
jvirden PS 01/27/04 7 14 7
This shows after I issued the command
$ passwd -n 1 -w 2 -x 14 jvirden
that password expiration was started on the date I issued the command and as expected the numbers were rounded to the nearest week. I was not asked to change the password when I logged in.