for BOOTP'ing servers.
dhcpd.conf
~~~~~~~~~~~
allow booting;
allow bootp;
ddns-update-style interim;
ignore client-updates;
subnet 192.168.1.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.1;
option router-discovery true;
option domain-name-servers 8.8.8.8;
range dynamic-bootp 192.168.1.200 192.168.1.240;
next-server 192.168.0.140;
filename "pxelinux.0";
}
subnet 192.168.0.0 netmask 255.255.255.0 {
}
~~~~~~~~~~
But I cannot seem to get HTTP or other services to work on 192.168.1.x
I have the existing 192.168.0.x network and was wondering how gateway
requests should get from 192.168.1.x to 192.168.0.1 ?
Many thanks in advance,
Aaron
-- users mailing list users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines