Lockout Users


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Lockout Users
# 1  
Old 04-23-2002
Lockout Users

I am using AIx 4.3.3 and was wondering what the command was to keep users from logging in. I want to be able to do maintenance and keep the users out. Can anyone help?
# 2  
Old 04-23-2002
1- A dirty way is:

a) view and log the actual the permisions of /usr
ls -l /usr

b) change the values
chmod 0750 /usr

c) make the change.

d) restore the original settings


2- another way is to disallow the login user by user

chuser login=false rlogin=false <login_name>

3- If you use the console for the maintenance

3.1.a- stop the inetd
stopsrc -s inetd
3.1.b make the change
3.1.c startsrc -s inetd

3.2.a ifconfig en0 down
3.2.b make the change
3.2.c ifconfig en0 up

Regards, Hugo.
# 3  
Old 04-23-2002
Probably the easiest one is to do a "/sbin/init.d/inetd stop" and then when you are done do a "/sbin/init.d/inetd start".

_______________________________________________
There are several ways to do this.

There is one caveat, "Don't log out yourself".

1) you can kill the inetd daemon. Can't login without a telnet session or FTP session. As above...

2) Move the password file. Can't login without a password.

3) Change permissions on the / directory to 700. This will disallow users from logging in as well. I did this once by accident. You can search for others who have done the same by accident!

4) Reboot into single user mode. Removes all network connectivity.


I am sure there are several other ways, but these are the most useful.



Of course you must either kick out the active users, or ask them to logout for maintenance. Try to be as nice as possible.



Smilie Smilie
# 4  
Old 04-23-2002
I think about the post and remember that
the simplest way is to create a file /etc/nologin.
This file disable all new logins.

touch /etc/nologin

Monterrey project was established a init.d directory?
I think that not yet; but you can find it. If you want, you
can use the /etc/rc<X>.d directory strtuctures.

Regards. Hugo

Last edited by hugo_perez; 04-23-2002 at 06:21 PM..
# 5  
Old 04-24-2002
According to the type of maintenance you need to go down
to the single user level (example when you put a maintenance level). When yo need to do this:

a- Login into the console

b- shutdown in maintenance mode
shutown -m

c- take an mksysb

d- upgrade the system
smitty update_all

Note: in the web http://www.redbooks.ibm.com there are
several redbooks (books) for AIX. Search AIX and tell me.

Good luck. Hugo.
# 6  
Old 04-26-2002
lockuser out

Another simple way to do this is to put
your system in single user mode

by issuing init 1 or init s but you have
to logon from the console.

After maintaince issue init 3 or use control -d key to bring the system back to the default run level.
# 7  
Old 04-28-2002
The correct way to do this is:

touch /etc/nologin

Just remember to remove /etc/nologin, when you are finished. Rebooting will automatically remove it.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Red Hat

RHEL4.8 no notification on PAM lockout

Good day. I have setup hardening the password (test system so far) prior to doing any work on production. Here is what I have set. Snippet from /etc/pam.d/system-auth auth required /lib/security/$ISA/pam_env.so auth required /lib/security/$ISA/pam_tally.so... (3 Replies)
Discussion started by: smurphy_it
3 Replies

2. Solaris

Secman lockout

Greetings, I work with a Solaris Sun Server V240 system (GCCS) and have run into a problem where I can't seem to unlock my SECMAN account at the NON-GLOBAL level. I have access to all global accounts to include sysadmin and secman. I have access to the non-global sysadmin account and root... (4 Replies)
Discussion started by: TLAMGUY
4 Replies

3. Red Hat

Account lockout

having account lockout issues with an RHEL 5 server. My users are getting locked out for 10 minutes after one failed login attempt even though /etc/pam.d/sshd is configured for 5 failed attempts: auth include system-auth auth required pam_tally2.so deny=5 onerr=fail... (1 Reply)
Discussion started by: nerdalert
1 Replies

4. Red Hat

Account Lockout on Redhat

On a redhat linux 4 server, how to find if there is an account lockout duration is set. Is it configured under pam or /etc/shadow? what entries I need to find out? Is it pam_time.so module? I desperately need an answer because on one of the servers, no one was able to login through any account... (4 Replies)
Discussion started by: Tirmazi
4 Replies

5. UNIX and Linux Applications

Account lockout using Openldap

What is the best way to implement account lockout in openldap? I have an openldap server with Ubuntu desktop client connecting to it for authentication. I want he accounts to locked out after say 5 failed authentication attempts I have enabled ppolicy layout in slapd.conf. overlay ppolicy... (0 Replies)
Discussion started by: nitin09
0 Replies

6. Red Hat

Account lockout policy

Hi all; I m using Red Hat Enterprise Linux Server release 5.1 (Tikanga) and I'm trying to setup password lockout policy so that a user account locks out after 3 failed attempts. Here are the entires of my /etc/pam.d/system-auth #%PAM-1.0 # This file is auto-generated. # User changes... (1 Reply)
Discussion started by: maverick_here
1 Replies

7. AIX

lockout su for 1 user

I want to know if there is any easy way of stopping 1 user from using su? perferabily any su but I can make do with not allow him to su to root but allow other user to su to root. (3 Replies)
Discussion started by: daveisme
3 Replies

8. AIX

user lockout...

Hi, We are using 4.3.3.0 and I would like to make a global change to the "number of failed logins before user account is locked" Any ideas, other than using SMIT one user at a time.... ??? Thanks... Craig. (2 Replies)
Discussion started by: stumpy
2 Replies

9. UNIX for Dummies Questions & Answers

root lockout

Hi, I am extremely new to UNIX and was recently promoted to administer the system for a small company. Anyhow, the time came for passwords to change, and I made the huge mistake of entering in the command (as root) passwd -l After logging out (oblivious to what would happen next), the root... (4 Replies)
Discussion started by: newbieadmin
4 Replies
Login or Register to Ask a Question