windows 11安装openSSH server 遇到的"kex_exchange_identification: read: Connection reset"问题

简介: windows 11安装openSSH server 遇到的"kex_exchange_identification: read: Connection reset"问题

使用ssh客户端连接已安装windown11的openSSH SERVER报错如下:
'''
OpenSSH_for_Windows_8.6p1, LibreSSL 3.4.3
debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling
debug1: Connecting to 192.168.1.5 [192.168.1.5] port 22.
debug1: Connection established.
debug1: identity file C:\Users\Administrator/.ssh/id_rsa type 0
debug1: identity file C:\Users\Administrator/.ssh/id_rsa-cert type -1
debug1: identity file C:\Users\Administrator/.ssh/id_dsa type -1
debug1: identity file C:\Users\Administrator/.ssh/id_dsa-cert type -1
debug1: identity file C:\Users\Administrator/.ssh/id_ecdsa type -1
debug1: identity file C:\Users\Administrator/.ssh/id_ecdsa-cert type -1
debug1: identity file C:\Users\Administrator/.ssh/id_ecdsa_sk type -1
debug1: identity file C:\Users\Administrator/.ssh/id_ecdsa_sk-cert type -1
debug1: identity file C:\Users\Administrator/.ssh/id_ed25519 type -1
debug1: identity file C:\Users\Administrator/.ssh/id_ed25519-cert type -1
debug1: identity file C:\Users\Administrator/.ssh/id_ed25519_sk type -1
debug1: identity file C:\Users\Administrator/.ssh/id_ed25519_sk-cert type -1
debug1: identity file C:\Users\Administrator/.ssh/id_xmss type -1
debug1: identity file C:\Users\Administrator/.ssh/id_xmss-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_for_Windows_8.6
kex_exchange_identification: read: Connection reset
Connection reset by 192.168.110.165 port 22
'''
并且端口已打开:
image.png

通过端口定位程序
最终定位原因是因为vmnat.exe惹祸的。
----很奇怪为啥sshd.exe在service.msc中是可以启动的,并且没有报错。

解决方法:
停止服务VMware NAT Service,然后重启服务sshd。
经验总结:系统开着22端口并不以为着是ssh服务的端口

相关文章
|
22天前
|
iOS开发 MacOS Windows
Mac air使用Boot Camp安装win10 ,拷贝 Windows 文件时出错
Mac air使用Boot Camp安装win10 ,拷贝 Windows 文件时出错
|
12天前
|
存储 JavaScript 前端开发
Node 版本控制工具 NVM 的安装和使用(Windows)
本文介绍了NVM(Node Version Manager)的Windows版本——NVM for Windows的安装和使用方法,包括如何安装Node.js的特定版本、列出已安装版本、切换使用不同版本的Node.js,以及其他常用命令,以实现在Windows系统上对Node.js版本的便捷管理。
Node 版本控制工具 NVM 的安装和使用(Windows)
|
13天前
9-14|npm install --global windows-build-tools 安装太慢了,能够指定国内源
9-14|npm install --global windows-build-tools 安装太慢了,能够指定国内源
|
29天前
|
SQL JavaScript 数据库
sqlite在Windows环境下安装、使用、node.js连接
sqlite在Windows环境下安装、使用、node.js连接
|
3天前
|
并行计算 开发工具 异构计算
在Windows平台使用源码编译和安装PyTorch3D指定版本
【10月更文挑战第6天】在 Windows 平台上,编译和安装指定版本的 PyTorch3D 需要先安装 Python、Visual Studio Build Tools 和 CUDA(如有需要),然后通过 Git 获取源码。建议创建虚拟环境以隔离依赖,并使用 `pip` 安装所需库。最后,在源码目录下运行 `python setup.py install` 进行编译和安装。完成后即可在 Python 中导入 PyTorch3D 使用。
|
2月前
|
PHP Windows
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
|
2月前
|
开发框架 .NET API
Windows Server 2022 安装IIS 报错 访问临时文件夹 C:\WINDOWS\TEMP\3C 读取/写入权限 错误: 0x80070005
Windows Server 2022 安装IIS 报错 访问临时文件夹 C:\WINDOWS\TEMP\3C 读取/写入权限 错误: 0x80070005
96 0
|
2月前
|
Linux Docker Windows
Windows——Docker拉取Windows Server镜像
Windows——Docker拉取Windows Server镜像
114 0
|
3月前
|
弹性计算 持续交付 Docker
阿里云云效产品使用合集之如何部署到阿里云服务器上的 Windows Server 上的 IIS
云效作为一款全面覆盖研发全生命周期管理的云端效能平台,致力于帮助企业实现高效协同、敏捷研发和持续交付。本合集收集整理了用户在使用云效过程中遇到的常见问题,问题涉及项目创建与管理、需求规划与迭代、代码托管与版本控制、自动化测试、持续集成与发布等方面。
|
3月前
|
网络协议 Unix 网络安全
FTP服务器怎么搭建?Windows server搭建FPT服务器
FTP服务器是按照FTP协议提供文件传输服务的计算机。它用于在两台计算机间安全地传输文件,支持用户权限管理和跨平台操作。FTP使用控制连接处理命令,数据连接传输文件,有PORT和PASV模式。要搭建FTP服务器,首先在Windows Server 2008 R2上安装IIS,确保选中FTP服务。接着,创建FTP文件夹作为站点根目录,通过IIS管理器添加FTP站点,配置站点信息、身份验证和权限。测试客户端通过telnet和浏览器访问FTP服务器,确认能成功登录及浏览文件。FTP常用于文件共享和管理,可通过专用工具如FlashFXP上传下载文件。
126 0
FTP服务器怎么搭建?Windows server搭建FPT服务器