Jakoś mój SSH nigdy nie chce mnie prosić o hasło.
Więc ustawiłem VPS na jakimś losowym serwerze gdzieś na świecie i chcę się z nim połączyć za pomocą ssh.
Mogę skonfigurować klucz, ale kiedy to zrobię:
ssh -l some-user IP
Dostaję błąd:
Received disconnect from ##.##.##.##: 2: Too many authentication failures for some-user
Kiedy patrzę na szczegóły, widzę, że hasło jest jedną z opcji:
debug1: Offering RSA public key: some-user@computer
debug1: Authentications that can continue: publickey,password
Jednak SSH nigdy nie prosi mnie o hasło. Próbuje 5 razy z podejrzeniem metody publickey, a następnie kończy się niepowodzeniem. Dlaczego ssh nie spróbuje z hasłem ?!
Na wszelki wypadek mój plik ssh_config ma:
PasswordAuthentication yes
Pełny dziennik
ssh -v -l root ##.##.##.##
OpenSSH_6.1p1 Debian-4, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /home/someuser/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to ##.##.##.## [##.##.##.##] port 22.
debug1: Connection established.
debug1: identity file /home/someuser/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: identity file /home/someuser/.ssh/id_rsa-cert type -1
debug1: identity file /home/someuser/.ssh/id_dsa type -1
debug1: identity file /home/someuser/.ssh/id_dsa-cert type -1
debug1: identity file /home/someuser/.ssh/id_ecdsa type -1
debug1: identity file /home/someuser/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.2p2 Ubuntu-6
debug1: match: OpenSSH_6.2p2 Ubuntu-6 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.1p1 Debian-4
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA XX:XX:...:XX:XX
debug1: Host '##.##.##.##' is known and matches the ECDSA host key.
debug1: Found key in /home/someuser/.ssh/known_hosts:38
debug1: ssh_ecdsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/someuser/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password
debug1: Offering RSA public key: someuser@computer
debug1: Authentications that can continue: publickey,password
debug1: Offering RSA public key: someuser@computer
debug1: Authentications that can continue: publickey,password
debug1: Offering DSA public key: someuser@computer
debug1: Authentications that can continue: publickey,password
debug1: Offering RSA public key: someuser@computer
debug1: Authentications that can continue: publickey,password
debug1: Offering RSA public key: someuser@computer
Received disconnect from ##.##.##.##: 2: Too many authentication failures for root
-o PasswordAuthentication=yes
.). Ale tego szukałem..ssh/config
. To-o PubkeyAuthentication=no
nie jest miłe jako trwałe rozwiązanie.Najprawdopodobniej plik zawiera więcej niż jedną
identityfile
linię.ssh/config
.Nawet jeśli masz
identityfile
whost
konfiguracji, jest stosowany globalnie. Oznacza to, żessh
wypróbowuje każdy plik tożsamości (tj. Klucz publiczny) na każdym hoście, zanim poprosi o podanie hasła z serwera.Możesz to naprawić przez
identityfile
linii lubPubkeyAuthentication no
do.ssh/config
lub-o PubkeyAuthentication=no
parametrem.Od
man 5 ssh_config
:Kilka ogólnych instrukcji dotyczących kluczy publicznych:
Istnieją pewne wyjątki, ale nie za dużo.
źródło
authorized_keys
), nie może nic z tym zrobić. A jeśli wszystkie klucze prywatne (id_rsa
/id_dsa
) znajdują się na tym samym komputerze, użycie więcej niż jednego nie ma znaczenia.Twój lokalny ssh nie powinien prosić o hasło, serwer ssh na drugim końcu powinien. Prawdopodobnie serwer skonfigurowano tak, aby nie akceptował uwierzytelniania za pomocą hasła. Mój też nie poprosiłby cię o hasło.
źródło