<p dir="ltr">Ok I will test that tomorrow.</p>
<p dir="ltr">Best regards,<br>
Eugène NG</p>
<div class="gmail_quote">Le 23 sept. 2014 16:08, "Niall O'Reilly" <<a href="mailto:niall.oreilly@ucd.ie">niall.oreilly@ucd.ie</a>> a écrit :<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">At Tue, 23 Sep 2014 15:06:45 +0200,<br>
Eugène Ngontang wrote:<br>
><br>
> My dhcod.conf file :<br>
><br>
> # DHCP Server Configuration file.<br>
> # see /usr/share/doc/dhcp*/dhcpd.conf.sample<br>
> #<br>
> ddns-update-style interim;<br>
> ignore client-updates;<br>
> subnet X.X.X.0 netmask 255.255.255.0 {<br>
> option routers X.X.X.1;<br>
> option subnet-mask 255.255.255.0;<br>
> option nis-domain "jcd.priv";<br>
> option domain-name "<a href="http://fr.jcdecaux.org" target="_blank">fr.jcdecaux.org</a>";<br>
> option domain-name-servers X.X.X.11, X.X.X.10, 10.231.2.3, 10.232.2.3;<br>
> range X.X.X.100 X.X.X.200;<br>
> default-lease-time 21600;<br>
> max-lease-time 43200;<br>
> }<br>
><br>
> # create as hosts as players<br>
><br>
> host CN-SHT-LX001 { hardware ethernet 00:01:80:81:d2:e1; fixed-address<br>
> X.X.X.15; }<br>
> host CN-SHT-LX002 { hardware ethernet 00:01:80:81:d2:ad; fixed-address<br>
> X.X.X.16; }<br>
<br>
  Is it the case that your new hosts are first connected to the<br>
  network, each obtaining an address from the ...100 - ...200 range,<br>
  and subsequently assigned a fixed address?  If so, the DHCP protocol<br>
  requires the previously-used address to be used again, if this is<br>
  not now forbidden.<br>
<br>
  In my experience, simply specifying<br>
<br>
host { ... fixed-address ...; }<br>
<br>
  isn't enough to forbid such re-use of an address.  You'll need to<br>
  use a pool specification.<br>
<br>
  Instead of<br>
<br>
range X.X.X.100 X.X.X.200;<br>
<br>
  use<br>
<br>
pool {<br>
  deny known clients;<br>
  range X.X.X.100 X.X.X.200;<br>
}<br>
<br>
  I hope this helps.<br>
<br>
<br>
  Best regards,<br>
  Niall O'Reilly<br>
_______________________________________________<br>
dhcp-users mailing list<br>
<a href="mailto:dhcp-users@lists.isc.org">dhcp-users@lists.isc.org</a><br>
<a href="https://lists.isc.org/mailman/listinfo/dhcp-users" target="_blank">https://lists.isc.org/mailman/listinfo/dhcp-users</a><br>
</blockquote></div>