Symptoms: 16.04 refuses connection from Putty and replies to ping requests
Remedies on askubuntu suggest installing:
sudo apt-get install openssh-server
Before I do this, how can I verify that an install is genuinely needed: I'd like to verify that it is not a configuration obstacle or maybe a service needs to be turned on? Is there a list of checks that can be performed?
Update: Does this response indicate that the install is required?
user@host:~$ apt-cache policy openssh-server
openssh-server:
Installed: (none)
Diagnostic credit and thanks to muru:
user@host:~$ service ssh status
● ssh.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
user@host:~$ service ssh start
Failed to start ssh.service: Unit ssh.service not found.
user@host:~$ apt-cache policy openssh-server
openssh-server:
Installed: (none)
Candidate: 1:7.2p2-4ubuntu2.1
Version table:
1:7.2p2-4ubuntu2.1 500
500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages
1:7.2p2-4 500
500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
service ssh status
,apt-cache policy openssh-server
,service ssh start
– muru Nov 01 '16 at 15:27