【发布时间】:2015-05-27 08:47:52
【问题描述】:
我无法在 Google Compute 上打开端口 93,尽管我确实在 Console Google Cloud 的防火墙中允许了该端口。 只有端口 80 和 3389 是活动的!
【问题讨论】:
-
您的实例是否正在侦听该端口?
netstat -an | grep 93
标签: port google-compute-engine
我无法在 Google Compute 上打开端口 93,尽管我确实在 Console Google Cloud 的防火墙中允许了该端口。 只有端口 80 和 3389 是活动的!
【问题讨论】:
netstat -an | grep 93
标签: port google-compute-engine
您有任何错误消息或测试方法吗? 您可以尝试以下方法:
在 GCE 外部的本地计算机上运行 $ telnet IP 93 和 $ nmap -p 93 IP
从 GCE 实例中,检查您的端口是否打开 $ telnet localhost 93
如果端口确实打开并接受连接,这可以让您更好地了解。
【讨论】: