- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Password Aging status
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
03-14-2007 10:40 PM
03-14-2007 10:40 PM
Password Aging status
Is there a way in UNIX to display the following info-
Minimum password length
10 characters
Invalid Logon Attempts
7 invalid logons
Password expiration period
90 days
Lockout Period
Until Admin resets
Password History
7 Previous Passwords
Thanks
Sujeet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2007 10:55 PM
03-14-2007 10:55 PM
Re: Password Aging status
you have only awarded points to 9 of 95 answers !
If you read the /etc/default/security on a trusted system, you will get that info.
Just a case of something like:
while read record
do
if [ "$record" = "MIN_PASSWORD_LENGTH" ]
then
echo "Minimum Password length"
echo `echo $record | awk -F'=' '{print $2}'` fi
done < /etc/default/security
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 01:14 AM
03-15-2007 01:14 AM
Re: Password Aging status
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 02:11 AM
03-15-2007 02:11 AM
Re: Password Aging status
/etc/default/security file will solve your perpose.please have a look on following document.It will help you.
http://docs.hp.com/en/B2355-60105/security.4.html
Thanks & Regards
Reshma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 04:20 AM
03-15-2007 04:20 AM
Re: Password Aging status
The above can get the info for each username. Not all users might be configured to use the defaults.
man getprpw for