kali中ssh配置
-
查看ssh服务状态
/etc/init.d/ssh status
-
修改配置文件
vim /etc/ssh/sshd_config
#PermitRootLogin prohibit-password --> PermitRootLogin yes #PasswordAuthentication yes --> PasswordAuthentication yes #PubkeyAuthentication yes --> PubkeyAuthentication yes
-
启动ssh服务
/etc/init.d/ssh restart
-
开机自启动
update-rc.d ssh enable
本文来自博客园,作者:Kenny_LZK,转载请注明原文链接:https://www.cnblogs.com/liuzhongkun/p/15730163.html