Reputation: 33
I can't open port 93 on Google Compute although I did allow that port in the firewall of Console Google Cloud. Only ports 80 and 3389 are activities!
Upvotes: 0
Views: 117
Reputation: 1481
Do you have any error messages or a way to test ? You can try the following :
from your local machine, outside GCE, run $ telnet IP 93
and $ nmap -p 93 IP
from the GCE instance, check if your port is open $ telnet localhost 93
This can give you a better idea if indeed the port is open and accepting connections.
Upvotes: 1