user1198485
user1198485

Reputation:

How Can I Access Locally Hosted IIS WebSite from Remote Computer By My IP Address?

How Can I Access My Locally Hosted IIS WebSite from Remote Computer By My IP Address ?

Upvotes: 0

Views: 6691

Answers (2)

Kuf
Kuf

Reputation: 17828

You have to check you ip here, make sure that you are forwarding port 80 (especially if you're in a locale home network), and then you could access your server by http://<server_ip> e.g. http://192.168.0.6

Note that as long as you don't have a fixed (static) ip, your ip address might change, and you'll have to recheck it.

Another note- The default HTTP port is 80, and by using port 80 you could access your server via browsers without writing the port number. If for any reason you like to switch port, make sure your forward that port number and access your site by http://<server_ip>:<port_number> , e.g. http://192.168.0.6:8080

Upvotes: 2

Avichal Badaya
Avichal Badaya

Reputation: 3629

if you are using some other port. then you can go with http://<ip_address>:<port_no>

Upvotes: 0

Related Questions