Opening port on windows server which is on google cloud

0

I have a windows server 2012 r2 on google cloud and i would like to reach 8091 port on this server, i created inbound and outbound rule for this port. and I forwarded that port on my dsl router but still cannot ping via telnet.Is there anything that i missed. Server is open for http/https traffic.

marchest

Posted 2018-01-08T17:48:18.730

Reputation: 1

1Have you opened 8091 in your firewall? Use netstat on the server to make sure that 8091 is open to the program you expect. – AFH – 2018-01-08T18:00:09.723

yes i created inbound and outbound rule in firewall on the server. when i type netstat -na | find "8091" the result is link @AFH

– marchest – 2018-01-08T18:29:57.390

It seems to be OK, and you obviously have a lot of connections established within the local machine. I still suspect the firewall: can you do a test with it temporarily disabled? Use netstat -nab to check the listening program and restart it. See if you can connect from your intranet first (for security, you can isolate the server from the internet while doing so, provided that there are no other processes running there which depend on it). If you have intranet access after disabling, look carefully at the incoming firewall settings after re-enabling. – AFH – 2018-01-08T18:50:14.077

after disabling firewall on server i typed netstat -nab then i get "The requested operation requires elevation." message. Sadly , i still dont have intranet access this port. @AFH – marchest – 2018-01-08T19:01:37.957

by the way i have tp link wd 9970 dsl router, i forwarded this port. @AFH – marchest – 2018-01-08T19:04:45.940

I ran it from Command Prompt (Admin) - right-click Start. I have a WD-9980, which I assume is similar, and I've had no problems in forwarding non-standard ports on Win10 Pro with Kaspersky IS, which is why I suspect security settings on WS2012. – AFH – 2018-01-08T19:33:31.983

No answers