当前位置: 首页 > 工具软件 > webssh > 使用案例 >

webssh 遇坑

慕阳平
2023-12-01

简单记录一下这两天瞎忙活的结果。因为想要尝试一下使用浏览器通过 ssh 访问阿里云的实例。

就是直接通过 git 拉代码,https://github.com/huashengdun/webssh.git,然后再进入到 webssh 文件夹,通过 python setup.py install 安装,安装好后,使用 wssh,但只能 linux 本地访问这个网址,而使用外网 ip:port 访问会提示 Public plain http request is forbidden. 就追着代码找, 最后在 handler.py 第 258 行,把这段代码注释以后就可以了。

handler.py

			# if options.fbidhttp:
            #     if ip_address is None:
            #         ip_address = to_ip_address(ip)
            #     if not ip_address.is_private:
            #         logging.warning('Public plain http request is forbidden.')
            #         return True

再通过 nohup wssh --port=你的端口 & 后台运行这个程序,再在本地 windows 的浏览器中通过 ip:port 访问即可,输入相应的信息,就可以连接到指定的服务器。

 类似资料: