Ori Refael
Ori Refael

Reputation: 3018

server not receving request by Ip

I've got an issue where my IIS 7 C# server is configured but only reciving requests only when i use http://localhost:6547/ and not when i change the localhost to my own ip. My question is : how do i make the server actually 'listen' to my port and recevie and return requests. facts that might help:

I think its something else related to premissions of remote access. my IIS 7 doesnt have permission manager for some reason even though i really added all the IIS related features available in the windows control panel.

If any data is missing i would gladly provide it.

Upvotes: 0

Views: 55

Answers (1)

Grady G Cooper
Grady G Cooper

Reputation: 1064

You need to confirm that your IIS is bound to all ip's (the * in picture below). Open IIS Adminstration->click on iis->click on bindings and update appropriately:

enter image description here

Other leads: https://serverfault.com/questions/148439/how-can-i-control-which-ip-address-iis7-uses

Upvotes: 1

Related Questions