diff --git a/Python/etc/dhcp3/dhcpd.conf b/Python/etc/dhcp3/dhcpd.conf index 507ca24..cddc0bc 100644 --- a/Python/etc/dhcp3/dhcpd.conf +++ b/Python/etc/dhcp3/dhcpd.conf @@ -195,7 +195,11 @@ subnet 10.231.137.0 netmask 255.255.255.0 { next-server 10.231.137.1; # Options pour le PXE option root-path "/"; + option routers 10.231.137.1; + option domain-name-servers %s; + option domain-name "crans.org"; + option domain-search "crans.org"; # Fichier a charger pour le boot par le reseau filename "pxelinux.0"; } -""" +""" % ', '.join(config.dns.recursiv['evenementiel'])