4

I'm assigned to create a webpage for all tenants in the house with this network composition:

This intranet web should be accessible from every computer within the network. I have access to the router closest to ISP modem and to the server PC, on which the web should be stored. This webpage should be accessible by name (let's say http://thishouse).

My question is... how to set it all up? The "easy part", web page with all the functionality is not the issue, but I have no experience with setting up intranet web server to run in setting like this.

kovike
  • 153

3 Answers3

6
  1. Install the web server... I recommend "Cherokee", or if you have a Mac, Just go to "System Preferences" and then "Sharing" and enable "Web Sharing". Let's say the Server in this case - has the address of 192.168.2.200.

  2. Hopefully, you can access the hosts file on every machine, in which case you just put an entry for your thishouse server in each computer's hosts file... for example..

127.0.0.1 localhost

255.255.255.0 broadcasthost

::1 localhost

192.168.2.200 thishouse thishouse.com www thishouse.local

  1. If not, you will need to "localize" the DNS resolution. You can use the "Server" for this, by installing a simple DNS server. I like DNSMASQ. A sample config might look like...

# Add domains which you want to force to an IP address here.

address=/thishouse/192.168.2.200

# Add other name servers here, with domain specs

# if they are for non-public domains.

server=/localnet/192.168.2.200

server=8.8.8.8 # google's DNS Server, to "go online"

  1. Then you a: point your ISP router's DNS to your internal server (192.168.2.200), and aa: have it provide DNS at it's address .1, to the internal LAN, using the .200 server to actually resolve local and "remote" addresses... or bb: just use the .200 address on ALL machines to do DNS resolution.. Having the router do this is more reliable and doesn't require any configuration.

This is simple stuff, but it actually takes years to realize how it all fits together. Hope this helps.

1

Provided you have the right firmware, IMO the best setup would be to utilize a DNS Forwarder that is basically a miniature name server for the LAN hosts. Open source router firmware like Pfsense or DD-WRT will have this feature. As an example, check out this link for general info on the Pfsense DNS Forwarder: http://doc.pfsense.org/index.php/DNS_Forwarder .

Also, it is not surprising that the hosts in each of you subnets are not visible to each other. Setting aside the technical details, I will say that a switch will likely be more appropriate instead of the bottom-most router in your diagram.

0

For windows user

  1. Just Download Xampp and create your website on localhost.
  2. After that goto on cmd and type ipconfig command.
  3. look the ip address of your system somthing like (192.16.1.11).
  4. Paste ip address into another system's browser. (NOTE: Both systems are connected with same network)
  5. Hit enter.

(LOOK WHATS HAPPENED)