- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HPUX 11.0: Trusted Systems Password Expiration
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
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
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
тАО07-15-2003 06:16 AM
тАО07-15-2003 06:16 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2003 08:37 AM
тАО07-15-2003 08:37 AM
SolutionI would say that the odds are good that a good portion of your users will have expired passwords. You might try first disabling password aging in SAM and then enable for 13 weeks. I think that will reset the experation time frame.
B) Is there anyway to change this parameter for all users on the systems for NON trusted systems? (Is there a global file to edit or is SAM the only way this can be changed?
Not for 11.00.
Is there a command that can be used from the command line...?
Yes, passwd
Could operation be scripted as to automated this process?
Yes:
#!/sbin/sh
MINDAYS=7
MAXDAYS=91
for user in `awk '{ FS=":"; print $1 }' /etc/passwd`
do
passwd -r files -n $MINDAYS -x $MAXDAYS $user
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2003 08:55 AM
тАО07-15-2003 08:55 AM
Re: HPUX 11.0: Trusted Systems Password Expiration
Setting the users back 13 weeks is bound to expire them if, any user less than 13 weeks from a password change.
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
тАО07-15-2003 11:04 PM
тАО07-15-2003 11:04 PM
Re: HPUX 11.0: Trusted Systems Password Expiration
/usr/lbin/modprpw -v [username]
when using this comand in the
/tcb/files/auth/[a-z]/[uername] file
u_succhg wil be changed to today.
Kind regards Freek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2003 11:29 PM
тАО07-15-2003 11:29 PM
Re: HPUX 11.0: Trusted Systems Password Expiration
Yes if you use SAM it will reset all the accounts but you will get a chance to change the password. So when the user next time logs in he will be asked to change the password.
Or the alternate way is to manually change the parameter called :u_succhg# in /tcb/files/auth/[a-z]/
and reset all accounts passwd change to todays date.
using modprpw
if its 11.11 system you have man pages for modprpw