ssh通过sock5的问题kex_exchange_identification: Connection closed by remote host
2022/9/5 23:25:29
本文主要是介绍ssh通过sock5的问题kex_exchange_identification: Connection closed by remote host,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
工作需要,连接几台外网的服务器.由于移动的网络直连,经常会连不上,所以想通过本地的sock5代理连接.
神奇的事情发送了,通过sock5代理,有几台主机可以连上,有几天报上面的错误.
经过反复测试,外网的服务器只要用默认的22端口,无法通过sock5连接,但国内的没问题.
不知道是不是国内的fhw问题,还是其它的问题.
最后是一个ms主机的修改ssh端口的报错:
参考解决方式:https://www.thegeekdiary.com/error-bind-to-port-2222-on-0-0-0-0-failed-permission-denied-error-while-starting-sshd-service-on-centos-rhel/
主要是ms主机内置的semanage进程的监控
# semanage port -l | grep ssh ssh_port_t tcp 22 2. Configure SELinux to allow sshd to utilize additional port 2222.
semanage port -a -t ssh_port_t -p tcp 2222 3. Verify new SELinux permitted sshd listen ports.
# semanage port -l | grep ssh ssh_port_t tcp 2222,22
这篇关于ssh通过sock5的问题kex_exchange_identification: Connection closed by remote host的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-26怎么使用nsenter命令进入容器?-icode9专业技术文章分享
- 2024-12-26导入文件提示存在乱码,请确定使用的是UTF-8编码怎么解决?-icode9专业技术文章分享
- 2024-12-26csv文件怎么设置编码?-icode9专业技术文章分享
- 2024-12-25TypeScript基础知识详解
- 2024-12-25安卓NDK 是什么?-icode9专业技术文章分享
- 2024-12-25caddy 可以定义日志到 文件吗?-icode9专业技术文章分享
- 2024-12-25wordfence如何设置密码规则?-icode9专业技术文章分享
- 2024-12-25有哪些方法可以实现 DLL 文件路径的管理?-icode9专业技术文章分享
- 2024-12-25错误信息 "At least one element in the source array could not be cast down to the destination array-icode9专业技术文章分享
- 2024-12-25'flutter' 不是内部或外部命令,也不是可运行的程序 或批处理文件。错误信息提示什么意思?-icode9专业技术文章分享