博客
关于我
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 ==》 字典
    查看>>
    python anaconda 安装使用
    查看>>
    python and或or 当参数传递的时候的用法
    查看>>
    Python append() 与列表上的 + 运算符,为什么这些会给出不同的结果?
    查看>>
    Python APP自动化测试工具adb与Monkey使用详解
    查看>>
    Python APP自动化测试框架Appium详解
    查看>>
    Python APP自动化测试框架开发实战
    查看>>
    python argparse模块
    查看>>
    Python asyncio库的学习和使用
    查看>>
    Python AttributeError:“dict“对象没有属性“append“
    查看>>
    Python base64和hashlib模块
    查看>>
    python basic programs
    查看>>
    python bert_gen.py 报错Unable to load weights from pytorch checkpoint file for......
    查看>>
    python binascii.Error: Incorrect padding
    查看>>
    Python bool() 函数能否为无效参数引发异常?
    查看>>
    Python C 程序子进程在“for line in iter“处挂起
    查看>>
    Python Celery:自动化测试平台定时任务必备的三方库
    查看>>
    python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令
    查看>>
    Python CONNECT 4 CHECK WIN函数
    查看>>
    python cos,Python cos(90)和cos(270)不是0
    查看>>