Hi again,
deny bootp; #default
authoritative;
ddns-update-style none;
subnet 192.168.178.0 netmask 255.255.255.0 #GREEN
{
pool {
range 192.168.178.30 192.168.178.90;
}
option subnet-mask 255.255.255.0;
option domain-name "cte.local";
option routers 192.168.178.1;
option domain-name-servers 192.168.178.251;
option ntp-servers 192.168.178.1;
default-lease-time 3600;
max-lease-time 7200;
allow bootp;
} #GREEN
subnet 192.168.1.0 netmask 255.255.255.0 #BLUE
{
pool {
range 192.168.1.170 192.168.1.250;
}
option subnet-mask 255.255.255.0;
option domain-name "cte.local";
option routers 192.168.1.1;
option domain-name-servers 192.168.178.251;
option ntp-servers 192.168.1.1;
default-lease-time 3600;
max-lease-time 7200;
allow bootp;
} #BLUE
But if there is a better way to set static routing for some of the DHCP clients then the ,LOCAL, I am all ears…
Cheers
Erik
EDIT: moderator formatted code