Regrettably I need to enable telnet for a single user on a Linux machine. Everyone else will have to use ssh.
How do I configure PAM to restrict which users may login via the telnet server?
|
Regrettably I need to enable telnet for a single user on a Linux machine. Everyone else will have to use ssh. How do I configure PAM to restrict which users may login via the telnet server? |
||||
|
|
|
You can use pam_succeed_if in your
Where ${telnet_user} is the user allowed to use telnet. But, if you weren't aware, telnet is a Bad Thing. The allowed account's details can easily be sniffed and may enable other people to use the account. Really do you SSH if at all possible. Edit: Whoops, fudged the logic. Thanks joeforker. |
|||||||||||||
|
|
You could use pam_localuser: http://www.kernel.org/pub/linux/libs/pam/Linux-PAM-html/sag-pam_localuser.html of for a more flexible approach, pam_listfile: http://www.kernel.org/pub/linux/libs/pam/Linux-PAM-html/sag-pam_listfile.html Both basically look for allowed/forbidden usernames in a local file and check logins against that. |
|||
|
|
|
I see that on RHEL 5 this is not possible as "telnet-server" nor "krb5-telnet" are PAM compatible. Running "ldd" on these binaries doesn't give a pam library reference. The user must compile the telnet-server itself with PAM support. |
|||
|
|