Openssh Server in Windows Ubuntu Bash installieren

Ubuntu Bash starten 

 

1.

Openssh Server installieren 

root@srv:~# apt-get install openssh-server


Wenn bereits installiert

root@srv:~# dpkg-reconfigure openssh-server

2.

Configdatei bearbeiten

root@srv:~# nano /etc/ssh/sshd_config
 

UsePrivilegeSeparation yes

in

UsePrivilegeSeparation no

ändern
 
PasswordAuthentication no

in

PasswordAuthentication yes

ändern
 

Datei mit ctrl + o  crtl + x speichern 

3.

Openssh Server neu starten

root@srv:~# service ssh stop

root@srv:~# service ssh start

Nun kann man z.B. mit putty auf 127.0.0.1 mit ssh2 einloggen.
 

Sollte der port 22 von powershell blockiert sein

root@srv:~# nano /etc/ssh/sshd_config

Port 22

auf

Port 2244

ändern
 

Datei speichern mit ctrl + o  crtl + x

Nun kann man z.B. mit putty auf 127.0.0.1 / port 2244 mit ssh2 einloggen

So sollte es dann aussehen (-:

Welcome to Ubuntu 14.04.4 LTS (GNU/Linux 3.4.0+ x86_64)

 * Documentation:  https://help.ubuntu.com/

  System information as of Tue Aug  9 23:47:28 DST 2016

  System load:    0.52      Memory usage: 54%   Processes:       8
  Usage of /home: unknown   Swap usage:   0%    Users logged in: 0

  => There were exceptions while processing one or more plugins. See
     /var/log/landscape/sysinfo.log for more information.

  Graph this data and manage this system at:
    https://landscape.canonical.com/

  Get cloud support with Ubuntu Advantage Cloud Guest:
    http://www.ubuntu.com/business/services/cloud

root@srv:~#