Rexxer

Some tips for me and other

DHCPD + Classes e.g. MAC-address

subnet 192.168.30.0 netmask 255.255.255.0 {
option routers 192.168.30.1;
option domain-name-servers 192.168.30.11, 192.168.30.2;
class “Hyper-V” {
match if substring(hardware,1,3) = 00:15:5d;
}
class “VMWare” {
match if substring(hardware,1,3) = 00:0c:29;
}
class “Winemu” {
match if substring(hardware,1,3) = 00:03:ff;
}
pool {
range 192.168.30.100 192.168.30.130;
allow members of “Hyper-V”;
}
pool {
range 192.168.30.131 192.168.30.160;
allow members of “VMWare”;
}
pool {
range 192.168.30.230 192.168.30.240;
allow members of “Winemu”;
}
}
}

Comments are currently closed.