Depuis mon ordinateur:
cameron@cameron-ubuntu:~$ ssh [email protected]
Permission denied (publickey).
Donc, il semble que l'authentification par mot de passe d'OpenSsh sur le téléphone ne soit pas activée. Mais il me semble que cela devrait l'être./etc/ssh/sshd_config du téléphone est la valeur par défaut:
# Package generated configuration file
# See the sshd_config(5) manpage for details
# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_Host_rsa_key
HostKey /etc/ssh/ssh_Host_dsa_key
HostKey /etc/ssh/ssh_Host_ecdsa_key
HostKey /etc/ssh/ssh_Host_ed25519_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes
# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 1024
# Logging
SyslogFacility AUTH
LogLevel INFO
# Authentication:
LoginGraceTime 120
PermitRootLogin without-password
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys
# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need Host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes
# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes
# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
#MaxStartups 10:30:60
#Banner /etc/issue.net
# Allow client to pass locale environment variables
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes
J'ai aussi essayé avec PasswordAuthentication yes
(c'est-à-dire sans commentaire, mais il me semble que "oui" est la valeur par défaut).
De plus, s'il contient des informations utiles que je ne connais pas, ssh -v:
cameron@cameron-ubuntu:~$ ssh [email protected] -v
OpenSSH_6.6, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to 192.168.99.124 [192.168.99.124] port 22.
debug1: Connection established.
debug1: identity file /home/cameron/.ssh/id_rsa type -1
debug1: identity file /home/cameron/.ssh/id_rsa-cert type -1
debug1: identity file /home/cameron/.ssh/id_dsa type -1
debug1: identity file /home/cameron/.ssh/id_dsa-cert type -1
debug1: identity file /home/cameron/.ssh/id_ecdsa type -1
debug1: identity file /home/cameron/.ssh/id_ecdsa-cert type -1
debug1: identity file /home/cameron/.ssh/id_ed25519 type -1
debug1: identity file /home/cameron/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6p1 Ubuntu-2ubuntu1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1p1 Ubuntu-7
debug1: match: OpenSSH_6.6.1p1 Ubuntu-7 pat OpenSSH* compat 0x04000000
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr [email protected] none
debug1: kex: client->server aes128-ctr [email protected] none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server Host key: ECDSA 7f:25:18:85:69:9f:9f:f2:25:e8:93:93:c1:50:56:c6
debug1: Host '192.168.99.124' is known and matches the ECDSA Host key.
debug1: Found key in /home/cameron/.ssh/known_hosts:16
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
debug1: Next authentication method: publickey
debug1: Trying private key: /home/cameron/.ssh/id_rsa
debug1: Trying private key: /home/cameron/.ssh/id_dsa
debug1: Trying private key: /home/cameron/.ssh/id_ecdsa
debug1: Trying private key: /home/cameron/.ssh/id_ed25519
debug1: No more authentication methods to try.
Permission denied (publickey).
Le démon SSH sur le téléphone fonctionne avec les options
/usr/sbin/sshd -D -o PasswordAuthentication=no
qui remplace toutes les options des fichiers de configuration. Il pourrait être difficile de changer cela.
Dans ce cas, il pourrait être plus facile (et plus sûr) de configurer l'authentification par clé publique. Collez votre clé publique dans /home/phablet/.ssh/authorized_keys2
. Oui, il y a un 2 à la fin, ce qui me fait penser que /etc/ssh/sshd_config
n'est même pas utilisé.
Vous avez seulement besoin d’un moyen de vous connecter initialement à votre téléphone. Essayez adb Shell
ou les boutons de Qt Creator à partir du SDK Ubuntu pour activer le mode développeur, configurer l'authentification par clé publique, etc.
/etc/init/ssh.override est celui où les options ssh par défaut sont remplacées.
cat /etc/init/ssh.override
manual
exec /usr/sbin/sshd -D -o PasswordAuthentication=no
Vous pouvez donc l'enlever d'ici.
Installez l'application de terminal sur votre téléphone. Passez en mode développeurs (dans les paramètres/à propos du périphérique) et définissez un mot de passe (pas de code PIN). Exécutez le terminal et tapez cette commande
/ usr/sbin/sshd
maintenant, vous pouvez vous connecter au périphérique en utilisant ssh depuis votre ordinateur en (quelque chose comme)
Utilisez le mot de passe que vous avez entré lors du passage en mode développeur. L'adresse IP doit bien sûr être l'adresse IP de votre téléphone. Si vous ne le connaissez pas, exécutez simplement la commande ifconfig dans le terminal de votre téléphone et recherchez une adresse IP proche de l'interface wlan.
Si vous souhaitez simplifier la prochaine fois, copiez la clé de votre ordinateur sur votre mobile en
ssh-copy-id [email protected]
la prochaine fois, vous n'aurez pas besoin du mot de passe et vous pourrez même désactiver le mode développeurs. Vous devez toujours exécuter le serveur ssh, cette fois avec la commande
Sudo /etc/init.d/sshd restart