从 Google 云 Shell 到外部服务器的出站 SSH
Outbound SSH from Google Cloud Shell to an external server
我正在玩 gcloud App Engine 并想从我的 私有 git 服务器克隆一个 git 存储库 使用 Google 云 Shell,但是,由于某种原因,我遇到了连接超时。
这是 ssh 给我的:
$ ssh -vvv myuser@myserver.mydomain.com -p 2121
OpenSSH_7.4p1 Debian-10+deb9u4, OpenSSL 1.0.2l 25 May 2017
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "myserver.mydomain.com" port 2121
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to myserver.mydomain.com [158.120.145.109] port 2121.
debug1: connect to address 158.120.145.109 port 2121: Connection timed out
ssh: connect to host myserver.mydomain.com port 2121: Connection timed out
*主机、域、IP 和端口已更改,原因很明显
需要考虑的事项:
- 我的 git 服务器已启动并且 运行 我可以从任何其他服务器连接到它
使用相同命令的机器
- 我的 git 服务器日志没有显示任何传入连接
来自 gcloud
- 我只使用 App Engine,我不想要
提供计算引擎
有没有人发现同样的问题并愿意分享解决方案?
Cloud Shell limits the ports on which outgoing TCP connections can be made 到 20、21、22、80、443、2375、2376、3306、8080、9600 和 50051。
更新(2018-9-19):此限制已被移除。现在应该可以在所有端口上从云 Shell 建立传出连接。
我正在玩 gcloud App Engine 并想从我的 私有 git 服务器克隆一个 git 存储库 使用 Google 云 Shell,但是,由于某种原因,我遇到了连接超时。
这是 ssh 给我的:
$ ssh -vvv myuser@myserver.mydomain.com -p 2121
OpenSSH_7.4p1 Debian-10+deb9u4, OpenSSL 1.0.2l 25 May 2017
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "myserver.mydomain.com" port 2121
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to myserver.mydomain.com [158.120.145.109] port 2121.
debug1: connect to address 158.120.145.109 port 2121: Connection timed out
ssh: connect to host myserver.mydomain.com port 2121: Connection timed out
*主机、域、IP 和端口已更改,原因很明显
需要考虑的事项:
- 我的 git 服务器已启动并且 运行 我可以从任何其他服务器连接到它 使用相同命令的机器
- 我的 git 服务器日志没有显示任何传入连接 来自 gcloud
- 我只使用 App Engine,我不想要 提供计算引擎
有没有人发现同样的问题并愿意分享解决方案?
Cloud Shell limits the ports on which outgoing TCP connections can be made 到 20、21、22、80、443、2375、2376、3306、8080、9600 和 50051。
更新(2018-9-19):此限制已被移除。现在应该可以在所有端口上从云 Shell 建立传出连接。