I am trying to set up a network and gateway on 192.168.1.x that I am using 
<br>for BOOTP&#39;ing servers.<br><br>dhcpd.conf<br>~~~~~~~~~~~<br>allow 
booting;<br>allow bootp;<br>ddns-update-style interim;<br>ignore 
client-updates;<br>subnet 192.168.1.0 netmask 255.255.255.0 {<br>    option 
subnet-mask 255.255.255.0;<br>    option broadcast-address 192.168.1.255;<br>    
option routers 192.168.1.1;<br>    option router-discovery true;<br>    option 
domain-name-servers 8.8.8.8;<br>    range dynamic-bootp 192.168.1.200 
192.168.1.240;<br>    next-server 192.168.0.140;<br>    filename 
&quot;pxelinux.0&quot;;<br>}<br>subnet 192.168.0.0 netmask 255.255.255.0 
{<br>}<br>~~~~~~~~~~<br><br>But I cannot seem to get HTTP or other services to 
work on 192.168.1.x<br><br>I have the existing 192.168.0.x network and was 
wondering how gateway <br>requests should get from 192.168.1.x to 192.168.0.1 
?<br><br>Many thanks in advance,<br><br>Aaron<br>