Skip to content
This repository has been archived by the owner on Aug 17, 2024. It is now read-only.

8088端口映射到外网可以登录ssh资产,反代成38088后无法登陆ssh资产 #458

Open
shawlxin opened this issue May 10, 2024 · 4 comments

Comments

@shawlxin
Copy link

安装完成后,http8088端口内网可以访问,添加了一个ssh资产,8088端口直接映射到外网,http域名8088访问登录后,可以连上ssh资产,但是将8088端口反代成https38088端口后,可以https域名308088访问,但是进去堡垒机后,无法连接上ssh资产,提示如下:
trying to connect to the server ...
websocket error undefined
connection is closed.

PixPin_2024-05-10_22-48-24

@OtaMegane
Copy link

我也遇到了一样的问题 请问最后有解决吗
我这里除了SSH会报和你一样的错误 RDP会报远程服务未找到 这样搞只能在内网访问意义就不大了

@shawlxin
Copy link
Author

我也遇到了一样的问题 请问最后有解决吗 我这里除了SSH会报和你一样的错误 RDP会报远程服务未找到 这样搞只能在内网访问意义就不大了

//最后我是外网走http访问的,放弃了https,个人认为可能是这个项目不支持反代套上https,或者本人的https证书是无效的

@OtaMegane
Copy link

我也遇到了一样的问题 请问最后有解决吗 我这里除了SSH会报和你一样的错误 RDP会报远程服务未找到 这样搞只能在内网访问意义就不大了

//最后我是外网走http访问的,放弃了https,个人认为可能是这个项目不支持反代套上https,或者本人的https证书是无效的

我证书倒是没问题 只能走http还是有点膈应

@OtaMegane
Copy link

OtaMegane commented Jun 25, 2024

@shawlxin
朋友 我用nginx进行反向代理成功了 实现了外网的HTTPS访问 不再报错 以下是代码供参考
`

HTTPS server

#
server {
    listen       **_port_** ssl;
    server_name  localhost;

    ssl_certificate      cert.pem;
    ssl_certificate_key  cert.key;

    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;

    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;

    location / {
    proxy_pass http://**_IP_** : **_port_**;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $http_connection;
    }
}

}

`

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants