1856505 Members
5195 Online
104113 Solutions
New Discussion

Re: Password convention

 
Remko Oosenbrug
Contributor

Password convention

My users must change there password every twelve weeks. The new password must differ at least three characters. Can I change this password convention?
OH No. It's happening again
4 REPLIES 4
Douglas Cromby_1
Valued Contributor

Re: Password convention

It looks like this convention of 3 chars having to be different is locked in, as it explains this in the man page for newpass.
Douglas Cromby_1
Valued Contributor

Re: Password convention

I have had a look and cannot find any Enhancement Request or the like, requesting that this 3 char rule be changed. Looks like it is a fixed requirement.
Stefan Farrelly
Honored Contributor

Re: Password convention


If you use a trusted system then you can use the modprpw command to allow any type of passwords you want.
Im from Palmerston North, New Zealand, but somehow ended up in London...
Wilmar Ricio
Occasional Advisor

Re: Password convention

The 3 char as mentioned earlier is locked-in with the passwd command (untrusted system).
Command would be:
passwd -f -x 90 user_name
f - force
x - 90 days
This would prompt user_name to change passwd every 90 days.