SSH Client (Linux)

Aus Tutorials
Zur Navigation springen Zur Suche springen

Installation

sudo apt-get install openssh-client

Kommandos remote per SSH ausführen

ssh <servername> -p <port> -l <username> -t "<remote-command>"

Ohne Passworteingabe

Dazu benötigt man einen Schlüssel - zum Erstellen siehe SSH per Key.

Das Schlüssel wird mit der Option "-i" mit angegeben:

ssh <servername> -p <port> -l <username> -i /home/<username>/.ssh/id_rsa -t "<remote-command>"

Probleme

Pseudo-terminal will not be allocated because stdin is not a terminal.

Um diese Meldung wegzubekommen, muss man anstelle von "-t" die Option "-tt" verwenden:

ssh <servername> -p <port> -l <username> -i /home/<username>/.ssh/id_rsa -tt "<remote-command>"

Verbindungsprobleme

Unable to negotiate with 10.X.X.XXX port 22: no matching host key type found. Their offer: ssh-rsa

Auf dem Client die Datei

sudo vi /etc/ssh/ssh_config

bearbeiten und die Parameter

HostKeyAlgorithms = +ssh-rsa
PubkeyAcceptedAlgorithms = +ssh-rsa

hinzufügen.

Links

https://wiki.ubuntuusers.de/SSH/

https://www.debian.org/doc//manuals/debian-handbook/sect.remote-login.de.html


Zurück zu Ubuntu