博客
关于我
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/

    你可能感兴趣的文章
    Nginx+Redis+Ehcache:大型高并发与高可用的三层缓存架构总结
    查看>>
    nginx+tomcat+memcached
    查看>>
    nginx+tomcat单个域名及多个域名配置
    查看>>
    Nginx+Tomcat实现动静分离
    查看>>
    nginx+Tomcat性能监控
    查看>>
    nginx+uwsgi+django
    查看>>
    nginx+vsftp搭建图片服务器
    查看>>
    Nginx-http-flv-module流媒体服务器搭建+模拟推流+flv.js在前端html和Vue中播放HTTP-FLV视频流
    查看>>
    nginx-vts + prometheus 监控nginx
    查看>>
    Nginx/Apache反向代理
    查看>>
    Nginx: 413 – Request Entity Too Large Error and Solution
    查看>>
    nginx: [emerg] getpwnam(“www”) failed 错误处理方法
    查看>>
    nginx: [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:
    查看>>
    nginx: [error] open() “/usr/local/nginx/logs/nginx.pid“ failed (2: No such file or directory)
    查看>>
    nginx:Error ./configure: error: the HTTP rewrite module requires the PCRE library
    查看>>
    Nginx:objs/Makefile:432: recipe for target ‘objs/src/core/ngx_murmurhash.o‘解决方法
    查看>>
    nginxWebUI runCmd RCE漏洞复现
    查看>>
    nginx_rtmp
    查看>>
    Vue中向js中传递参数并在js中定义对象并转换参数
    查看>>
    Nginx、HAProxy、LVS
    查看>>