My ASP.NET Web API is bound to localhost:
startOptions.Urls.Add("http://localhost:8080");
If I now call netstat -a
I would have expected to see something like 127.0.0.1:8080
but it looks like my binding works on all IP addresses on the local machine:
Active Connections
Proto Local Address Foreign Address State
TCP 0.0.0.0:8080 MyComputer:0 LISTENING
TCP [::]:8888 MyComputer:0 LISTENING
Do I have to worry about external (e.g. non-localhost) connections?