Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I access my website (IIS) from the internet? [closed]

Tags:

I have installed IIS. I have browsed to my website on IIS using the 'Browse *:80 (http)' link in IIS. This navigates to http://localhost. That link is only going to work on my own machine.

I don't care about my IP address changing (I'm going to show my website for a few hours max every now and then so can update it and resend the link as and when required).

How do I make my website accessible to the internet? What url should I use http://82.11.220.212 (where 82.11.220.212 is the IP of my computer)? Do I need to disable firewalls / add exceptions to my modem / router?

like image 662
atreeon Avatar asked Aug 08 '12 18:08

atreeon


People also ask

How do I access IIS server?

To open IIS Manager from the Start screenOn the Start screen, click Control Panel. Click System and Security, and then click Administrative Tools. In the Administrative Tools window, double-click Internet Information Services (IIS) Manager.


1 Answers

You have to make sure that your broadband provider has given you a static IP (there is sometimes an extra charge for this). Otherwise, you will be assigned a new IP every time you connect to the internet.

If your ISP modem is connected to a router first and then to the computer, you have to log in to your router settings and forward incoming http requests. This is usually done by putting a forwarding rule for incoming TCP connections on port 80. You have to forward these connections to port 80 on your computer. If you also want to support https, you have to forward port 443.

like image 106
Shameer Avatar answered Jan 03 '23 00:01

Shameer