Troy Aden wrote:
> 
>         Hi I am working with Dachstein in a basic router setup. I would like
> to know how to set up DHCP request forwarding between subnets so that we can
> administer all of our subnets with one DHCP server. I will do my best to
> draw this out.
> 
>               -ROUTER-
>                 Subnet 1 - 192.168.141.1
>                 Subnet 2 - 192.168.142.1
>                 Subnet 3 - 192.168.143.1
> 
> DHCP SERVER IS ON SUBNET 1. (192.168.141.252)
> I want computers that are on the .142 and 143 subnets to (Obtain Ips from
> the DHCP server on subnet 1) have their DHCP REQUESTS forwarded to the DHCP
> SERVER ON SUBNET 1 (.141)
> 
> How is this done? Can someone please help me out.

On one of our sites, we are running this:

        dhcpd           2.0pl5

# cat /etc/dhcpd.conf
dynamic-bootp-lease-length 604800;
max-lease-time 1209600;
option domain-name "private.network";
option domain-name-servers 192.168.11.254, 192.168.11.10;
option netbios-name-servers 192.168.11.10;
option routers 192.168.11.252;
subnet 192.168.11.0 netmask 255.255.255.0 {
        range 192.168.11.101 192.168.11.250;
        option routers 192.168.11.252, 192.168.11.254;
}
subnet 192.168.12.0 netmask 255.255.255.0 {
        range 192.168.12.101 192.168.12.245;
        option routers 192.168.12.254, 192.168.11.252;
}
subnet 192.168.13.0 netmask 255.255.255.0 {
        range 192.168.13.101 192.168.13.250;
        option routers 192.168.13.254, 192.168.11.252;
}


192.168.11.254 is the DCD.  It has two (2) interfaces: wan1 (T1) and
eth0 (192.168.11.0/24).

192.168.11.252 is a Cisco 3640 router that ties these remote sites
together.

All three (3) sites get dhcp addresses from 192.168.11.254.

hth

-- 

Best Regards,

mds
mds resource
888.250.3987

Dare to fix things before they break . . .

Our capacity for understanding is inversely proportional to how much we
think we know.  The more I know, the more I know I don't know . . .

_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

------------------------------------------------------------------------
leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html

Reply via email to