Results 1 to 5 of 5
How do I confirm if a user logged in, is remote or local? In the case the user is remote, how to be sure what authentication/method is it using, like ...
- 08-04-2011 #1
How to confirm a user logged in is a remote user?
How do I confirm if a user logged in, is remote or local? In the case the user is remote, how to be sure what authentication/method is it using, like LDAP, NIS or other?
- 08-04-2011 #2
This will tell you local or remote
For the auth method:Code:last
I believe there is no other way then to review the configuration of that box.You must always face the curtain with a bow.
- 08-04-2011 #3
actually theres a user "abc123". Its not listed in /etc/passwd. so i wanted to know it gets authenticated to login to this machine.
Thanks'
- 08-04-2011 #4Linux Guru
- Join Date
- May 2011
- Posts
- 1,843
Maybe look for instances of that username in your system logs:
Code:grep -r abc123 /var/log
- 08-05-2011 #5Just Joined!
- Join Date
- Feb 2011
- Posts
- 14
this will list all instance of abc123 your system is configured for
this will list where your system look for, to authenticate usersCode:getent passwd abc123
Code:grep passwd /etc/nsswitch.conf


Reply With Quote