I am using Windows Server 2016 with IIS 10.0 and I have configured a website in IIS Server Manager which binds to port 9999 and should listen to all IP addresses.
netstat -an | findstr 9999
shows the following which looks fine to me (ABHÖREN means LISTENING):
TCP 0.0.0.0:9999 0.0.0.0:0 ABHÖREN
I can establish a connection via browser or telnet using localhost
as hostname (which resolves to ::1
) or using ::1
directly. But trying this with the servers LAN IP address (e.g. 192.168.178.65
) or the IPv4 loopback address (127.0.0.1
) does not work, I get a timeout.
I have tried the following:
- disable Windows Firewall
- disable Windows Defender
- using
netsh http add iplisten 0.0.0.0
andnetsh http add iplisten 192.168.178.65
Also I think there is something that blocks the connection. Immeadetly after rebooting the server I can establish a connection via an IPv4 Address but it stops working after a moment.
Are there any things I can check or try?