Ssh configuration

From wiki
Revision as of 11:44, 12 January 2020 by imported>Jacob
Jump to navigation Jump to search

Return Freebsd Knowledge Base Next Net-snmp configuration


Enable encrypted ssh authentication

$ mkdir ~/.ssh
$ chmod 700 ~/.ssh

Copy public keys from another host

$ vim ~/.ssh/authorized_keys

Force key authentication only

$ sudo vim /etc/ssh/sshd_config
 PermitRootLogin no              # << Changed to prohibit root login over ssh
 PasswordAuthentication no       # << This toggles the ssh key only authorization
 ChallengeResponseAuthentication no      # changed to force key auth. only
 UsePAM no                       # << Changed to set ssh key authorization only

Return Freebsd Knowledge Base Next Net-snmp configuration