注:基于2018年安装的kali版本。
启动ssh服务
/etc/init.d/ssh start 或 service ssh start #启动ssh服务
/etc/init.d/ssh status或者service ssh status #查看ssh服务是否正常运行
修改/etc/ssh/sshd_config配置文件
#PermitRootLogin prohibit-password 修改成 PermitRootLogin yes
#PasswordAuthentication yes 修改成 PasswordAuthentication yes
配置永久有效
update-rc.d ssh enable #系统自动启动SSH服务 开启
update-rc.d ssh disabled #系统自动启动SSH服务 关闭
标签:status,服务,启动,Kali,笔记,etc,ssh,Linux,yes From: https://www.cnblogs.com/dustfree/p/16807962.html