作业 第九章
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了作业 第九章相关的知识,希望对你有一定的参考价值。
<<<第九单元练习>>>
1.在desktop主机中建立用户westos,并设定其密码为westoslinux
useradd westos
passwd westos
输入两次westoslinux
2.配置desktop中的sshd服务要求如下:
*)设定sshd服务只允许westos用户可以被访问使用
*)创建westos用户的key认证方式
*)设定westos用户只允许使用key认证方式,屏蔽其系统密码认证方式
vim /etc/ssh/sshd_config
Allowusers westos 加入
:wq
systemctl restart sshd
ssh-keygen
cd /root/.ssh/
ssh-copy-id -i id_rsa.pub [email protected]
vim /etc/ssh/sshd_config
PasswordAuthentication no 78行加入
:wq
systemctl restart sshd
以上是关于作业 第九章的主要内容,如果未能解决你的问题,请参考以下文章