I've created a rule in google cloud to allow inbound connections, but the port won't open. Can't connect through telnet or online port checkers. Can anyone tell me what could the issue be? I included all my rules below as well but it's port 27015 I'm trying to open and on a Windows server (with firewall disabled)
Asked
Active
Viewed 3,784 times
-1
Md Zubayer
- 205
- 1
- 4
Joel
- 1
- 1
- 1
-
But your "firewall" allows all traffic anyway! What is the problem you are having? – Michael Hampton Dec 21 '18 at 20:00
-
The specific port I need open is still showing as closed even with the rules to allow all trafic – Joel Dec 21 '18 at 22:08
-
What do you mean by that? – Michael Hampton Dec 21 '18 at 22:46
-
I mean the port 27015 isn't open. There's no other way to explain it. – Joel Dec 21 '18 at 22:48
-
That actually doesn't say anything. You need to be specific about what you are doing. Why do you expect the port to be open? How are you checking whether the port is open? – Michael Hampton Dec 21 '18 at 22:49
2 Answers
0
The string you entered into Protocols and Ports
is using a semi-colon to separate TCP:27015
and UDP:27105
which is invalid syntax, you need to use a comma ,
.
funkytown
- 86
- 3
0
You can check following the previous answer posted by the community member, if the issue still persists, you can try the following:
- Check to see if the port is open or closed using nmap.
nmap [ip_address]
Make sure there is no firewall running inside the VM blocking those connections.
Check from inside the VM and make sure that service is running on that port.
telnet
- You also need to verify if the application running on your instance is listening on port (in this lnk it talks about 443 but in your case it is TCP:27015) . To check this, try with this command.
sudo netstat -ntlp | grep LISTEN
In the output, if you don't see the application beside port number, check if your VM is correctly configured to ports for your application.
Md Zubayer
- 205
- 1
- 4