修改Kali系统配置 - 允许远程登陆

修改 Kali 系统 ssh-config 配置文件, 开启 ssh 服务, 允许远程登陆。

开启密码登陆

开启密码登陆
1
2
3
PasswordAuthentication yes
PermitEmptyPasswords no
PermitRootLogin yes

开启密钥登陆

开启密钥登陆
1
2
3
RSAAuthentication yes
PubkeyAuthentication yes
AuthorsizedKeysFile .ssh/authorized_keys
增加密钥文件配置内容
1
2
echo 'ssh-rsa XXXX' >> /root/.ssh/authorized_keys
cat /root/.ssh/authorized_keys

关于如何生成密钥对,请参考:如何生存 ssh 密钥对

注意,配置结束后要执行

重启命令
1
/etc/init.d/ssh restart
Donate - Support to make this site better.
捐助 - 支持我让我做得更好.