Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I set up a website through Apache on Computer A, and then want to access the website on Computer B through a different network, can I connect to the server without a domain name? I thought I would be able to use the IP address of the server, but haven't figured out if that is possible on different networks or how to do that.

share|improve this question

closed as off topic by maple_shaft, Will Aug 3 '12 at 18:12

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

As long as you have routing in place between the two networks, the IP address will do just fine. When the client connects to the server using a DNS name, the first thing it does anyways is to translate the DNS name into an IP address which is used to connect.

If the server is located in a private network, behind a firewall (possibly using address translation) things get more complicated. In that case, the solution depends on the network setup.

share|improve this answer

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