There are three blocks of addresses reserved for "private" networks in
ftp://ftp.internic.net/rfc/rfc1918.txt
They are:
10/8 (i.e. 10.0.0.0-10.255.255.255)
172.16/12 (172.16.0.0-172.31.255.255)
192.168/16 (192.168.0.0-192.168.255.255)
You are guaranteed that none of these numbers are in use on the Internet at
large, and you can use them without permission. If you want your Windoze box
to have Internet access while your Linux box is dialled up to your ISP, use
IP masquerading, e.g.
ipfwadm -F -a accept -S 10.0.0.0/8 -m
(you have to build a kernel with IP masquerading enabled first)
Brian.