代码拉取完成,页面将自动刷新
#!/bin/bash
# 删除原设置,在sshd_config末尾添加新设置
sed -i '/^.*Port.*/d' /etc/ssh/sshd_config \
&& sed -i '/^.*PermitRootLogin.*/d' /etc/ssh/sshd_config \
&& sed -i '/^.*PubkeyAuthentication.*/d' /etc/ssh/sshd_config \
&& sed -i '/^.*PasswordAuthentication.*/d' /etc/ssh/sshd_config \
&& sed -i '/^.*PermitEmptyPasswords.*/d' /etc/ssh/sshd_config \
&& sed -i '$a\
Port 1072 # ssh端口号\
PermitRootLogin yes # 允许以root身份登录\
PubkeyAuthentication no #禁止通过密钥登录\
PasswordAuthentication yes # 允许通过密码登录\
PermitEmptyPasswords no # 禁止空密码' /etc/ssh/sshd_config \
&& echo root:dockerbaota | chpasswd
# systemctl restart sshd
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。