I want to make it so that the WCF service is available from the outside.
When testing, I used http: // localhost: 8080 and net.tcp: // localhost: 9100
Now I want to test the service from another PC and I changed localhost to my ip 10.2.16.22.
From another PC, this IP pings, but, for example, the link http://10.2.16.22:8080 does not open. (Everything is fine with mine).
Tell me what I could miss.
netsh advfirewall firewall add rule name="In_8080" dir=in action=allow protocol=TCP localport=8080,netsh advfirewall firewall add rule name="In_9100" dir=in action=allow protocol=TCP localport=9100- kmv