编辑/ etc / ssh / sshd_config时,我看到了一个默认注释掉的指令“PermitRootLogin”.
我想设置“PermitRootLogin no”,但仍然只能从本地网络以root身份ssh到机器.
那可能吗?
解决方法 使用/ etc / ssh / sshd_config中的Match配置参数:# general configPermitRootLogin no # the following overrIDes the general config when conditions are met. Match Address 192.168.0.* PermitRootLogin yes
请参阅man sshd_config
总结以上是内存溢出为你收集整理的linux – 如何仅允许ssh从本地网络root用户?全部内容,希望文章能够帮你解决linux – 如何仅允许ssh从本地网络root用户?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)