/etc/ssh/sshd_config line 84: Unsupported option UsePAM Extra argument status.
时间: 2023-10-10 18:09:40 浏览: 429
这个错误信息是由于在SSH服务器的配置文件中 `UsePAM` 参数后面有多余的参数。
你需要打开 `/etc/ssh/sshd_config` 文件并找到 `UsePAM` 这一行。检查这一行后面是否有多余的参数,如果有则将其删除。如果不确定该如何修改可以将 `UsePAM` 这一行的参数修改为 `yes` 或者 `no` 来避免这个错误。然后保存文件并重启 SSH 服务即可。
相关问题
逐条注释 ``` if grep -q "Protocol" /etc/ssh/sshd_config then sed -i '/Protocol/s/^#//' /etc/ssh/sshd_config sed -i "s/Protocol.*/Protocol 2/g" /etc/ssh/sshd_config else echo 'Protocol 2' >> /etc/ssh/sshd_config fi if grep -q "PrintMotd" /etc/ssh/sshd_config then sed -i '/PrintMotd/s/^#//' /etc/ssh/sshd_config sed -i "s/PrintMotd.*/PrintMotd yes/g" /etc/ssh/sshd_config else echo "PrintMotd yes" >> /etc/ssh/sshd_config fi service sshd restart systemctl restart sshd.service ```
这段脚本的作用是修改/etc/ssh/sshd_config文件中的SSH配置,并重新启动SSH服务。具体解释如下:
```shell
if grep -q "Protocol" /etc/ssh/sshd_config
then
sed -i '/Protocol/s/^#//' /etc/ssh/sshd_config
sed -i "s/Protocol.*/Protocol 2/g" /etc/ssh/sshd_config
else
echo 'Protocol 2' >> /etc/ssh/sshd_config
fi
```
- 检查/etc/ssh/sshd_config文件中是否存在"Protocol"这一行。
- 如果存在,则使用sed命令将该行的行首的注释符号#去掉,即取消注释。
- 然后使用sed命令将该行的值修改为"Protocol 2",即设置SSH协议版本为2。
- 如果不存在,则在文件末尾添加一行"Protocol 2"。
```shell
if grep -q "PrintMotd" /etc/ssh/sshd_config
then
sed -i '/PrintMotd/s/^#//' /etc/ssh/sshd_config
sed -i "s/PrintMotd.*/PrintMotd yes/g" /etc/ssh/sshd_config
else
echo "PrintMotd yes" >> /etc/ssh/sshd_config
fi
```
- 检查/etc/ssh/sshd_config文件中是否存在"PrintMotd"这一行。
- 如果存在,则使用sed命令将该行的行首的注释符号#去掉,即取消注释。
- 然后使用sed命令将该行的值修改为"PrintMotd yes",即启用SSH登录时显示欢迎信息。
- 如果不存在,则在文件末尾添加一行"PrintMotd yes"。
```shell
service sshd restart
systemctl restart sshd.service
```
- 重新启动SSH服务,使配置生效。这两行命令可能根据Linux发行版的不同而有所区别,用于重启SSH服务。
/etc/ssh/ssh_config: line 47: Bad configuration option: permitrootlogin /etc/ssh/ssh_config: line 48: Bad configuration option: permitemptypasswords /etc/ssh/ssh_config: terminating, 2 bad configuration option
这个错误信息表明您的SSH配置文件(/etc/ssh/ssh_config)中存在无效的配置选项。具体来说,第47行和第48行都有错误的配置选项:permitrootlogin和permitemptypasswords。
这些选项在SSH服务器的配置文件(/etc/ssh/sshd_config)中是有效的,但在客户端的配置文件中是无效的。
要解决这个问题,请打开SSH客户端的配置文件(/etc/ssh/ssh_config),找到并删除这两个无效的选项。然后保存文件并重新启动SSH服务。您可以使用以下命令来重新启动SSH服务:
```
sudo service ssh restart
```
这应该会解决这个问题。
阅读全文