- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Linux Password Policy
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
тАО05-06-2005 03:04 AM
тАО05-06-2005 03:04 AM
When I want to change the password for regular user, it shows me:
BAD PASSWORD: is too simple
New password:
BAD PASSWORD: it's WAY too short
...
Because it's a testing server, no security issue here needs to be concerned, the user can use the password like "abc" or "123".
Thanks !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2005 03:50 AM
тАО05-06-2005 03:50 AM
Re: Linux Password Policy
for a good and easy password generator, check out the Advanced Password Generator 'apg', I won't stop You from keeping the passwords in a binder, but I really can't find any difference in using 123 or Gesw53!AA\ as a password except the number of letters.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2005 06:08 AM
тАО05-06-2005 06:08 AM
Re: Linux Password Policy
where's "apg" ? I couldn't find it from my Red Hat Enterprise Linux 3.
Thanks !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2005 09:33 AM
тАО05-06-2005 09:33 AM
Re: Linux Password Policy
the rpm's here should work for You:
http://dag.wieers.com/packages/apg/
a small example:
vault:/home/floh$ apg -m 4 -x 4 -a 0
Quom
liv2
utdo
Haf2
Fons
ukgi
(this was the 'pronouncable' mode)
vault:/home/floh$ apg -m 4 -x 4 -a 1
T5fu
+u.y
FjGr
LjtO
AUy~
W)cp
(and this wasn't)
vault:/home/floh$ apg -m 4 -x 4 -a 1 -M n
0548
6928
7237
7693
6676
8916
(and this finally get's You quite random 4-digit numbers, which will hopefully make people keep them a bit safer)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2005 10:56 AM
тАО05-06-2005 10:56 AM
Re: Linux Password Policy
That package may be able to be removed from your system.
You can violate the normal password rules by having root user or an operator with sudo capability set the passwords manually.
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
тАО05-06-2005 05:35 PM
тАО05-06-2005 05:35 PM
SolutionMinimum password length you can have is 6 characters. This limit is hardcoded into pam_cracklib module.
To allow simple 6 character passwords (e.g. abc123) modify /etc/pam.d/system-auth as descibed below.
Change
password requisite /lib/security/$ISA/pam_cracklib.so retry=3
to
password requisite /lib/security/$ISA/pam_cracklib.so retry=3 minlen=6 dcredit=0 ucredit=0 ocredit=0 lcredit=0 difok=0
There's good documentation about PAM modules in /usr/share/doc/pam-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2005 10:28 PM
тАО05-08-2005 10:28 PM