Stretch setup ssh: Difference between revisions

From embeddedTS Manuals
(Add information specific to Debian Stretch)
(Fixed typo)
Line 5: Line 5:




Debian Stretch by default disallows logins directly from the user "root". Additionally, SSH will not allow remote connections without a password or value SSH key pair. This means in order to SSH to the device, a user account must first be created, and a password set:
Debian Stretch by default disallows logins directly from the user "root". Additionally, SSH will not allow remote connections without a password or valid SSH key pair. This means in order to SSH to the device, a user account must first be created, and a password set:
<source lang=bash>
<source lang=bash>
useradd --create-home --shell /bin/bash newuser
useradd --create-home --shell /bin/bash newuser

Revision as of 11:35, 17 July 2019

To install ssh, install the package as normal with apt-get:

apt-get install openssh-server


Debian Stretch by default disallows logins directly from the user "root". Additionally, SSH will not allow remote connections without a password or valid SSH key pair. This means in order to SSH to the device, a user account must first be created, and a password set:

useradd --create-home --shell /bin/bash newuser
passwd newuser


After this setup it is now possible to connect to the device as user "newuser" from a remote PC supporting SSH. On Linux/OS X this is the "ssh" command, or from Windows using a client such as PuTTY.