You should be able to run with as many virtual interfaces as you like mate, another of your problems is that your ranges are too small..
200 systems you said, why are you only allocating 20 IP's on each subnet?
Try something like this:
Quote:
ddns-update-style interim;
ignore client-updates;
shared-network two-subnets{
option subnet-mask 255.255.255.0;
option domain-name "example.com";
option domain-name-servers 192.168.10.254;
default-lease-time 21600;
max-lease-time 43200;
subnet 192.168.20.0 netmask 255.255.255.0 {
option routers 192.168.20.254;
range 192.168.20.120 192.168.20.240;
}
subnet 192.168.10.0 netmask 255.255.255.0 {
option routers 192.168.10.254;
range 192.168.10.120 192.168.10.240;
}
}
|
Did you read the docs?
The problem will be of course, that you will have 2 DHCP servers running on one physical network.. so which will the clients connect to?
If you had another nic, you could physically segment it to prevent this.