SSH (en): Unterschied zwischen den Versionen

Aus Gemini-Wiki
Zur Navigation springen Zur Suche springen
Zeile 7: Zeile 7:
 
It's recommended to avoid unencrypted [[Telnet (en)|Telnet]]- (or [[FTP (en)|FTP]]-) connections, and the use of secure ssh connections is preferable. The shell on the remote computer can be used similar in both cases. In the actual connection the user will not notice any difference using the unsecure telnet or secure ssh.
 
It's recommended to avoid unencrypted [[Telnet (en)|Telnet]]- (or [[FTP (en)|FTP]]-) connections, and the use of secure ssh connections is preferable. The shell on the remote computer can be used similar in both cases. In the actual connection the user will not notice any difference using the unsecure telnet or secure ssh.
  
== Aufruf ==
+
== Connecting ==
 
[[Bild:Hostname.png|thumb|Putty]]
 
[[Bild:Hostname.png|thumb|Putty]]
=== Vorbereitung ===
+
=== Preparation ===
*Es muss per [[Telnet]] ein [[Passwort ändern|Passwort für den Benutzer root]] gesetzt werden.
+
*Use [[Telnet (en)|Telnet]] to set a [[Change_Password_(en)|Password]] for the user ROOT.
*[[Dropbear]] Dienst muss aktiv sein.
+
*[[Dropbear (en)|Dropbear]] service must be active.
 
=== Linux Client ===
 
=== Linux Client ===
Der Aufruf von einer Shell des lokalen Linux-Rechners aus auf die Dreambox sieht dann so aus:
+
Opening a Shell from the local Linux computer can be done as follows:
 
<syntaxhighlight>
 
<syntaxhighlight>
 
ssh root@ip_der_dreambox
 
ssh root@ip_der_dreambox
Zeile 19: Zeile 19:
  
 
=== Windows Client ===
 
=== Windows Client ===
Zum Aufruf von einem lokalen Windows-Rechner aus auf die Dreambox ist das Programm [[PuTTY|Putty]] sehr interessant.
+
For connecting from a local Windows computer with the Dreambox, [[PuTTY|Putty]] is an nice programm.
  
 
== Lizenz ==
 
== Lizenz ==

Version vom 16. August 2013, 21:53 Uhr

Deutsch.png - in Deutsch English.png - in English

ssh stands for Secure Shell. This is not a Shell as we know it, but a secure tunnel through an unsecure network. The most known unsecure network is the internet. For a safe communication the proven Public/Private Key Process is used, because the password should also be transfered in a secured way over the network. Because this asymetric encryption (different keys for encrypting and decrypting) requires a lot (too much) processor time, the encryption will switch automatically to a symetric encryption (same key for encrypting and decrypting) once the connection is made. The key is changed and negociated each time again.

It's recommended to avoid unencrypted Telnet- (or FTP-) connections, and the use of secure ssh connections is preferable. The shell on the remote computer can be used similar in both cases. In the actual connection the user will not notice any difference using the unsecure telnet or secure ssh.

Connecting

Putty

Preparation

Linux Client

Opening a Shell from the local Linux computer can be done as follows:

ssh root@ip_der_dreambox

Windows Client

For connecting from a local Windows computer with the Dreambox, Putty is an nice programm.

Lizenz

Aus lizenzrechtlichen Gründen wird bei den meisten Linux-Distributionen nicht das ursprüngliche ssh eingesetzt, sondern die freie Variante der open ssh. Von den Funktionen her ist das aber zu vernachlässigen und auf der Dreambox nicht relevant.

Literaturhinweise