- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- password aging in a trsuted system
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
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
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
11-21-2005 03:05 AM
11-21-2005 03:05 AM
password aging in a trsuted system
I need to change the Maximum password aging from 180 to 90 . and minimum password aging to 0 .it is trusted systems
How to do this,
Regards,
psn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 03:20 AM
11-21-2005 03:20 AM
Re: password aging in a trsuted system
/etc/default/security
You can also do a man passwd command to gain help on the available options you can put into this file.
I also recommend looking at the HP document "Administering Your HP-UX Trusted System", you can try finding it at: http://docs.hp.com/en/B2355-90121/index.html
Hope this helps you psn.
Paul.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 03:29 AM
11-21-2005 03:29 AM
Re: password aging in a trsuted system
There is no such file security in /etc/default folder
# pwd
/etc/default
# ls -l
total 48
-r--r--r-- 1 bin bin 11 Mar 31 2004 fs
-r--r--r-- 1 root root 626 Jan 28 2004 nlspath
-r--r--r-- 1 bin bin 67 Nov 9 2000 useradd
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 03:30 AM
11-21-2005 03:30 AM
Re: password aging in a trsuted system
Try setting the password againg from
SAM --> Accounts for Users and Groups -->Users --> Action --> Modify -->Modify Password Options :
Enjoy ,
Hth,
RAj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 04:05 AM
11-21-2005 04:05 AM
Re: password aging in a trsuted system
The security file does not exist by default. Use the touch command to create it. Then you can add the necessary items to the file.
touch /etc/default/security
rw-r--r-- root sys security
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 04:07 AM
11-21-2005 04:07 AM
Re: password aging in a trsuted system
You might be able to control this behavior with one of the parameter files in /etc/default
After doing it in sam take a look at the command log and you'll see how to do it on the command line.
min=7 #minimum days between passwod changes
max=180 #maxmimum password expiration
warn=8 # warn the user 7 days prior to expiration.
cp /etc/passwd /tmp
while read -r LINE
do
username=$(cat $LINE | awk -F: '{print $1}')
passwd -n $min -x $max -w $warn
done /tmp/passwd
rm -f /etc/passwd
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
11-21-2005 06:32 AM
11-21-2005 06:32 AM
Re: password aging in a trsuted system
Try with:
SAM -> Auditing and security -> System Security Policies -> Passwd Aging policies
Regards,
Zigor