ubuntu14.04 配置免免ssh

前端之家收集整理的这篇文章主要介绍了ubuntu14.04 配置免免ssh前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、 安装 apt-get install openssh-server ssh

2、配置/etc/ssh/sshd_config

Port 22
Protocol 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
UsePrivilegeSeparation yes
KeyRegenerationInterval 3600
ServerKeyBits 1024
SyslogFacility AUTH
LogLevel INFO
LoginGraceTime 120
PermitRootLogin without-password
StrictModes yes
#PermitRootLogin yes
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile %h/.ssh/authorized_keys

IgnoreRhosts yes
RhostsRSAAuthentication no
HostbasedAuthentication no
PermitEmptyPasswords no
ChallengeResponseAuthentication no
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
UsePAM yes

3、 配置免密码登录

cd ~

ssh localhost

exit

cd ~/.ssh

ssh-keygen -t rsa //一直回车

cat ./id_rsa.pub >> ./authorized_keys

chmod 600./authorized_keys

chmod 700 /home/username

chmod 700 ~/.ssh

原文链接:https://www.f2er.com/ubuntu/352459.html

猜你在找的Ubuntu相关文章