博客
关于我
3. kali开启ssh服务,远程连接
阅读量:710 次
发布时间:2019-03-21

本文共 571 字,大约阅读时间需要 1 分钟。

为确保服务器环境支持最新服务功能,首先需要更新系统源信息。运行以下命令启动源更新服务:

apt-get update

接下来安装SSH服务包:

apt-get install ssh

启动并查看SSH服务状态,确保服务正常运行:

service ssh startservice ssh status

如果需要临时停止服务可用以下命令:

service ssh stop

在系统支持SSH时,默认启用了root登录过滤和密钥认证策略。本文将指导您进行详细配置:

# vi /etc/ssh/sshd_config1. 取消32行及之后的注释2. 将 "PermitRootLogin prohibit-password" 修改为 "PermitRootLogin yes"

如果使用xshell访问服务器时遇到 "find no matching key exchange" 错误,请尝试以下方法:

  • 确认服务器支持OpenSSH协议
  • 更新න摄 soberdy软件包
  • 使用putty作为替代访问工具
  • 如遇到访问问题,可以尝试以下操作:

  • 打开putty
  • 设置Connection → SSH → 无突破口认证改为允许空White key
  • 测试连接是否成功
  • 以上步骤适用于 Debian/Ubuntu 系统,如果遇到其他问题请参考官方指南进行设置。

    转载地址:http://qnwrz.baihongyu.com/

    你可能感兴趣的文章
    python | bleach,一个超强的 Python 库!
    查看>>
    python | cartopy,一个有趣的 Python 库!
    查看>>
    python | cloud-init,一个实用的 云计算 Python 库!
    查看>>
    python | code2flow,一个神奇的 Python 库!
    查看>>
    python | cudf,一个超实用的 Python 库!
    查看>>
    python | daphne,一个非常nice的 Python 库!
    查看>>
    python调用halcon
    查看>>
    python | doit,一个非常实用的 Python 库!
    查看>>
    python | easyocr,一个超厉害的 关于OCR的 Python 库!
    查看>>
    python | fastFM,一个高级的 Python 库!
    查看>>
    python | feature_engine,一个实用的 Python 库!
    查看>>
    python | filelock,一个超酷的 Python 库!
    查看>>
    python | fire,一个强大的 Python 库!
    查看>>
    python | flanker,一个神奇的 Python 库!
    查看>>
    python | flower,一个强大的 Python 库!
    查看>>
    python | funcy,一个超强的 提供函数式编程工具 Python 库!
    查看>>
    python | ggplot,一个超强的 Python 库!
    查看>>
    python | grab,一个强大的 Python 库!
    查看>>
    python | gunicorn,一个非常实用的 Python 库!
    查看>>
    python | h5py,一个无敌的关于 HDF5 的 Python 库!
    查看>>