0

I'm trying to connect to my PC through my phones with IP Address and I have been followed these 2 posts:

Browse Web Site With IP Address Rather than localhost

Can't connect to IIS Express using IP Address

I have tried with many <bindings>

enter image description here

My Inbound rules:

enter image description here

netsh command with VS2019 run as admin but none of that work. On my PC, localhost run fine but http://192.168.1.14:44375 is not working.

Doan Van Thang
  • 989
  • 1
  • 10
  • 21

1 Answers1

1

steps :

1- check the IP in the listen list using the below command

netsh http show iplisten    

2- in case the IP is not listed , then use the below command to add it

netsh http add iplisten 192.168.1.17

3- run F5 the visual studio now after you set your appURL

Please mark as best answer incase your problem has been solved