- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Account lockouts and warning (lack of warning)
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
08-10-2005 03:02 AM
08-10-2005 03:02 AM
I've ran into a couple things of late where accounts get locked for no apparent reason, lockout status value is 0000000, alock is no,
We have one set of processes that uses "rlogin" and another set the uses ssh(2). It consistently happens across my larger clients. my largest client has probably 300 accounts and probably field 10-20 account calls a week from them alone. They are using the rlogin, one of our other clients has probably 5-10 account resets per week. exptm value on some is set to 180, we aren't anywhere near expiry time.
Any thoughts at what I can look at?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:10 AM
08-10-2005 03:10 AM
SolutionJust a thought.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:14 AM
08-10-2005 03:14 AM
Re: Account lockouts and warning (lack of warning)
I agree, i think 90% of the calls on account lock is numlock or caplock stupidity. I got reamed by one of our clients for not getting to the root of the problem. helpdesk call #1, Stupid User.
That being said does SSH and RLOGIN use different auth files?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:15 AM
08-10-2005 03:15 AM
Re: Account lockouts and warning (lack of warning)
You can look in the syslog for login errors to see if there is any pattern
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:16 AM
08-10-2005 03:16 AM
Re: Account lockouts and warning (lack of warning)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:17 AM
08-10-2005 03:17 AM
Re: Account lockouts and warning (lack of warning)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:22 AM
08-10-2005 03:22 AM
Re: Account lockouts and warning (lack of warning)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:27 AM
08-10-2005 03:27 AM
Re: Account lockouts and warning (lack of warning)
having said that, using ssh you can chose to use challenge/passphrase method to be used for your authentication and bypass the password checking entirely. Basically you generate a pair of private and public keys. Send your public key to the server (under $HOME/.ssh for open ssh implementations) and keep the private key on your workstation. at the time of creation you assign a passphrase to your private key so that when you are absent at the keyboard, people can not have a freeride to your systems. But since this passphrase is under your control, you can make it as easy or as hard as your heart desires. This may explain why you are getting less complaints from ssh users, if this is the case.
Hope this is as clear as mud by now :) Cheers...
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:27 AM
08-10-2005 03:27 AM
Re: Account lockouts and warning (lack of warning)
exptm=-1
lftm=-1
umaxIntr=-1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:29 AM
08-10-2005 03:29 AM
Re: Account lockouts and warning (lack of warning)
I will look at the challenge again..
Is that in /etc/ssh2/sshd2_config?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:30 AM
08-10-2005 03:30 AM
Re: Account lockouts and warning (lack of warning)
The easy way to test is to lock an account out with ssh say, then try rlogin.
I'm sure that they've got to be the same.
As for helping users to remember/type their password, hmmmm not sure, putty allows the delete key to actually delete, which I find helps me a bit sometimes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:37 AM
08-10-2005 03:37 AM
Re: Account lockouts and warning (lack of warning)
Actually if sshd is running on your server, challenge/passphrase authentication is in effect. I am not sure if you can disable it or if you really want to disable it either. It is one of the beauties of ssh. You can type your life story as a passphrase and use anything you like instead of a minimum of 6 characters of cryptic password you will forget 3 minutes after changing it.
typical password : C3!dfE
sapmle passphrase: My dog's name is Casey and she loves to chew rawhide
Yes you can have spaces, special characters or anything your heart desires in your passphrase and tell me which one is more secure and easier to remember (unless a hacker has an insight to your soul)
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 03:43 AM
08-10-2005 03:43 AM
Re: Account lockouts and warning (lack of warning)
Sounds like my Yellow Lab.
I am going modify my alock check script and pull all the parameters on those school districts in question. I have two districts that represent 70% of our users. These are my problem "Children". Old blue hairs that do bookkeeping. :D
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2005 02:18 PM
08-10-2005 02:18 PM
Re: Account lockouts and warning (lack of warning)
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 01:03 AM
08-11-2005 01:03 AM
Re: Account lockouts and warning (lack of warning)
I wrote a script that resets certain values in the auth files based on the users "home school district" (ie the "read" value $dist)
# cat chgpass
export PATH=$PATH:/usr/lbin
echo Enter District:
read $dist
grep "/home/$dist" /etc/passwd |awk -F: '{print $1}' > /tmp/$dist.users
for u in `cat /tmp/$dist.users`
do
# Send Current Info to Temp File
getprpw $u > /tmp/$dist.auth1
# Modify Auth Parameters to "-1" or Disable
modprpw -l -m exptm=-1,lftm=-1,mintm=-1,expwarn=-1 $u
# Send New Info to Temp File
getprpw $u >/tmp/$dist.auth2
# Compare Old and New Parameters
diff /tmp/$dist.auth1 /tmp/$dist.auth2
done
echo "Script Complete"
I am going to monitor this closely for the next year.. My guess if I get any calls it will be stupid user calls, forgetting the caplock or something..
Thanks ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 01:25 AM
08-11-2005 01:25 AM
Re: Account lockouts and warning (lack of warning)
I do like your script.. I am not much of a perl person yet, It will be useful when troubleshooting these pesky varmints.. Thanks...
Points Submit to all.. I am closing the thread..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 01:25 AM
08-11-2005 01:25 AM