Configuring SSH for Remote Logins You can manually start the SSH service with systemctl start ssh or configure it to start at boot time with systemctl enable ssh.
The SSH service has a relatively sane default configuration, but given its powerful capabilities and sensitive nature, it is good to know what you can do with its configuration file, /etc/ssh/sshd_config. All the options are documented in sshd_config(5) (see Manual Pages).
The default configuration allows password-based logins. If this is not wanted, you can disable this by setting PasswordAuthentication to no.
...