A quick and dirty way to have the two local computers find the linux boxes would be to add entries in the hosts file on the windows systems. Windows uses a file normally located at
C:\windows\system32\drivers\etc\hosts This is the windows equivalent of the /etc/hosts file on Linux systems. On my systems at home I have added a link to a testing server I run and the file looks like this:
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
# localhost name resolution is handled within DNS itself.
127.0.0.1 localhost
# Any other entries you had go here (new line no # no space);
192.168.0.2 srvr4 srvr4.txlinux.com
Normal syntax for the file is:
IP Address <TAB> short_name <TAB> Fully qualified Domain Name
You can then get to the server by putting either the short_name or the full name in your Navigation or Location area:
http://srvr4/page1.html
or
http://srvr4.txlinux.com/page1.html