Networking Forums

Networking Forums > Computer Networking > Linux Networking > Dhcp 3 (isc.org): serving multiple subnets on different interfaces

Reply
Thread Tools Display Modes

Dhcp 3 (isc.org): serving multiple subnets on different interfaces

 
 
Pr. Stephen Falken
Guest
Posts: n/a

 
      11-05-2004, 10:31 AM
I need to make my dhcp3-server (isc.org one) serve, say,
192.168.0.0/16 on eth1 and 10.0.0.0/8 on eth2. Is this possible? How?
And, if it is not possible, is there any free dhcp server which will
do this?
Tnx in advance.
 
Reply With Quote
 
 
 
 
KaiRo - Robert Kaiser
Guest
Posts: n/a

 
      11-05-2004, 10:36 AM
> I need to make my dhcp3-server (isc.org one) serve, say,
> 192.168.0.0/16 on eth1 and 10.0.0.0/8 on eth2. Is this possible? How?


That's quite easy (given that both interfaces have addrsses that are
inside those subnets)...

Just provide two subnet blocks, for example:

subnet 192.168.0.0 netmask 255.255.0.0 {
option routers 192.168.0.1;
range <whatever>;
[...]
}

subnet 10.0.0.0 netmask 255.0.0.0 {
option routers 10.0.0.1;
range <whatever>;
[...]
}

Robert Kaiser
 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
DHCP Configuration for multiple subnets and Virtual Computer Robert Windows Networking 4 02-18-2008 01:16 PM
DHCP for multiple subnets Jorge Azcuy Windows Networking 7 07-25-2007 08:20 PM
DHCP Server for multiple subnets on different segments vpont Windows Networking 2 10-14-2005 08:46 PM
Multiple default routes on multiple interfaces t_pascal@my-deja.com Linux Networking 3 07-07-2005 03:28 PM
One DHCP server - two interfaces - two subnets Madhusudan Singh Linux Networking 0 08-08-2003 08:46 PM



1 2 3 4 5 6 7 8 9 10 11