kali开启ssh22端口服务
前言
版本说明
linux.kali=kali-linux-2020.1a-installer-amd64.iso
相关链接:
- Kali 官网:https://www.kali.org/
- Kali 下载地址:https://www.kali.org/downloads/
kali开启ssh22端口服务
编辑 /etc/ssh/sshd_config 配置文件
vim /etc/ssh/sshd_config # 找到 #PasswordAuthentication yes 把#的注释去掉 PasswordAuthentication yes # 将 #PermitRootLogin prohibit-password 修改为:PermitRootLogin yes PermitRootLogin yes
重启 SSH 服务
/etc/init.d/ssh start
设置开机自启
update-rc.d ssh enable
问题一
问题详情:
failed to start ssd.service: unit sshd.service not found
解决方案
# 安装 openssh-server sudo apt-get install openssh-server