Bonjour,
J'utilise le module Net::ISC::DHCPd::Config pour parser la configuration du fichier de conf dhcpd donc voici un extrait :
subnet 192.168.10.0 netmask 255.255.255.0 {
option routers 192.168.10.1;
range 192.168.10.100 192.168.10.200;
host pnom {
hardware ethernet D0:AA:12:BC:13:65;
fixed-address pnom.domain.net
}
host pnom2 {
hardware ethernet D0:AA:12:BC:13:66;
fixed-address pnom2.domain.net
}
}
subnet 192.168.20.0 netmask 255.255.255.0 {
option routers 192.168.10.1;
range 192.168.10.100 192.168.10.200;
host pnom3 {
hardware ethernet D0:AA:12:BC:13:67;
fixed-address pnom.domain.net
}
host pnom4 {
hardware ethernet D0:AA:12:BC:13:68;
fixed-address pnom2.domain.net
}
}
subnet
(…)