I have XAMPP installed in local laptop. And I have a almost static ip. I would like to give the ip to other to run it from thier browser. I configured apache httpd-vhosts.conf to listen my ip address:80 and added the virtual server with the ip address and domain root to local httdocs directory and the servername as localhost. Apache doesn't start. what should I do to access my website from external computer. THnks

link|improve this question

62% accept rate
feedback

4 Answers

up vote 21 down vote accepted

First, you need to configure your computer to get a static IP from your router. Instructions for how to do this can be found: here

For example, let's say you picked the IP address 192.168.1.102. After the above step is completed, you should be able to get to the website on your local machine by going to both http://localhost and http://192.168.1.102, since your computer will now always have that IP address on your network.

If you look up your IP address (such as http://www.ip-adress.com/), the IP you see is actually the IP of your router. When your friend accesses your website, you'll give him this IP. However, you need to tell your router that when it gets a request for a webpage, forward that request to your server. This is done through port forwarding.

Two examples of how to do this can be found here and here, although the exact screens you see will vary depending on the manufacturer of your router (Google for exact instructions, if needed).

For the Linksys router I have, I enter http://192.168.1.1/, enter my username/password, Applications & Gaming tab > Port Range Forward. Enter the application name (whatever you want to call it), start port (80), end port (80), protocol (TCP), ip address (using the above example, you would enter 192.168.1.102, which is the static IP you assigned your server), and be sure to check to enable the forwarding. Restart your router and the changes should take effect.

Having done all that, your friend should now be able to access your webpage by going to his web browser on his machine and entering http://IP.address.of.your.computer (the same one you see when you go here ).

As mentioned earlier, the IP address assigned to you by your ISP will eventually change whether you sign offline or not. I strongly recommend using DynDns, which is absolutely free. You can choose a hostname at their domain (such as cuga.kicks-ass.net) and your friend can then always access your website by simply going to http://cuga.kicks-ass.net in his browser. Here is their site again: DynDns

I hope this helps.

link|improve this answer
Yes it worked!!! I have n't changed my ip to static as lose my internet all together. Also need to check the DynDns. Appreciate your HELP.THnks – coool May 5 '09 at 16:40
so with the DynDns you don't have to make your IP static? You just put it to your IP and bang you've got it? – chromedude Nov 27 '10 at 16:50
DynDns gives you functionality like a static IP address. My IP address on my home router will still change... but DynDns gives me a free hostname that they keep updated to always point to whatever my dynamic IP address is. I.e. my home router (which then port forwards on to my desktop) is always reachable at "myname.doesntexist.org" – Cuga Oct 13 '11 at 19:50
feedback

Are you able to reach your website on your own local machine, or does Apache not run at all?

I've never heard of an "almost static" IP before...

You'll want to set up your server to have a static IP address first. Then you need to configure your router so that any requests coming to your router's IP at a given port is directed to your server with the newly-configured static IP at another given port (80 is default).

Unless you pay for a static IP from your ISP, you'll have a dynamic one. I recommend using DynDNS (http://www.dyndns.com/), which will send updates to their service and give you a host name that acts like a true static IP, for example: john.doesntexist.org. This is all free.

Which version of Windows are you using? I could give more detailed instructions if I knew.

link|improve this answer
I run winxp and latest xampp. My localhost is working fine. Almost static IP -> I know the isp does a dynamic ip or everytime i connect i get a new ip. but i never disconnect mostly. so the ip remains same(so static ip). As Mention I changed appache httpd-vhost configuration listen ip:80 listen 80 <virtual-server ip:80> documentroot "c:\xammp\htdocs" serverroot localhost </virtual-server> let me know if you need anymore info – coool May 5 '09 at 2:25
Even if you don't sign offline, your IP address will eventually expire. You could keep manually checking your IP address assigned to you, but you'd have to do this repeatedly. – Cuga May 5 '09 at 2:35
feedback

If you're behind a router, things get a little more complicated.

The first thing to realize is that the static IP address should probably be assigned to the router. That will require configuring the router, much like we configured your server above. Exactly how will vary from router to router, but the principals are the same: you'll configure the router to not get an IP address dynamically, but instead you'll enter the IP, gateway, subnet, and possibly DNS information by hand, using whatever approach your router uses for configuration.

The "trick", if you want to call it that, is telling the router to pass on requests it receives from the internet to your server. It's typically referred to as port-forwarding. Once again, depending on how your router is configured, the general idea is that you configure it to accept requests on certain "ports" and direct them to certain computers on your LAN.

The port part is fairly easy. If you want to set up a web server, then you'll know that port 80, where http requests are handled, is the port you want to forward. But to where?

Much like your direct connection to the internet, you'll need to assign your server a static IP address within your local network, so that the router knows what machine to forward the requests to. Typically a router will tell you, or let you configure, the range of IP addresses it will assign from dynamically, so you'll simply want to choose an IP address outside of that range. For example my router at home is configured to assign dynamic IPs starting at 192.168.1.100 and up. So I've elected to assign a static IP on my local area network of 192.168.1.2 (192.168.1.1 is the address of the router on the local network).

So the rest is simply a variation on what I've already covered: configure that server with the static IP you've chosen, a subnet mask of 255.255.255.0 should do, the default gateway should be the router (192.168.1.1 in my case), and quite probably the router should also be your DNS. If not, use the DNS settings that your ISP assigned you.

Now configure the router to forward port 80 traffic to the static IP address you chose, and ... there you are. Your web server, behind a router, should be visible from the internet.

link|improve this answer
feedback

I know this very old but for future's sake:

I also used a dynamic dns provider. Wanted to test the website (IIS) BEHIND my (home) router. So i thought i use something like this:

my.dynamic.dnss.ip:8080 (because my router's port 80 was used to admin it).

So this seemed to be the only solution.
But: Paypal seemed to not like port 8080: only port 80 and 443 are allowed (don't know why!!)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.