Google Compute Engine - 对SSH“Connection refused”进行故障排除

时间:2013-10-10 12:27:20

标签: ssh google-compute-engine

我使用以下命令在Google Compute Engine上访问我的实例:

gcutil ssh my-instance-name

但它给了我这个错误:

ssh: connect to host ip-address port 22: Connection refused

我检查并停用了防火墙,但我仍然收到此错误。有人可以告诉我如何解决这个问题吗?

2 个答案:

答案 0 :(得分:7)

计算引擎防火墙阻止所有流量,除非有规则允许它。 最常见的问题是缺少允许SSH的默认防火墙规则。要重新添加,请运行:

gcutil --project=myproject addfirewall --allowed=tcp:22 default-ssh

如果不是这样,那么对于解决文档中的SSH连接问题有一些很好的建议: Troubleshooting SSH errors

答案 1 :(得分:0)

Google Compute Engine防火墙还必须定义“网络”。

对于自定义“网络”:

gcutil --project=yourproject addfirewall --allowed=tcp:22 default-ssh --network yournetwork