Hello!
I've joined a Debian 8 server to a Windows domain. Nearly everything works as expected - even ssh login with domain authentication.
Nearly because I want to limit ssh access to one local user and only one specific domain user.
So I thought a AllowUsers entry in the sshd.conf file will do the job - fail...
I always get the messages:
PHP Code:
sshd[5400]: User myuser@mydomain.lan from myhost.mydomain.lan not allowed because not listed in AllowUsers
sshd[5400]: input_userauth_request: invalid user mydomain\\\\myuser [preauth]
sshd[5400]: debug1: PAM: initializing for "mydomain\\myuser"
My current entry is:
PHP Code:
UsersAllow mylocaluser "myuser@mydomain.lan"
I've tried nearly any syntax (including sshd restart) I've found on the web but without success. Theres are also no other allow or deny entries in the conf file.
Any suggestions?