oleg wrote:
> I am running DHCPD server on linux box that does NAT/firewall for my
> home network. I installed MediaMVP device and I want private DHCPd
> server on one of the PCs to provide its IP address
>
> How do I force DHCPD server on the linux box to ignore the MAC address
> of the MediaMVP device?
with ISC 3.x
reading the man of dhcpd.conf
from man dhcpd.conf
The booting keyword
allow booting;
deny booting;
ignore booting;
The booting flag is used to tell dhcpd whether or not to respond to
queries from a particular client. This keyword only has meaning when
it appears in a host declaration. By default, booting is allowed, but
if it is disabled for a particular client, then that client will not be
able to get an address from the DHCP server.
host mediamvp {
hardware ethernet xx:xx:xx:xx:xx:xx;
ignore booting;
}
> I spend couple of hours searching online and couldn't find any
> references to such option....
i spend just five minutes in man
>
> Here is my dhcpd.conf file:
> Thanks!!
>
> subnet 192.168.0.0 netmask 255.255.255.0 {
> option routers 192.168.0.1;
> option subnet-mask 255.255.255.0;
> range 192.168.0.20 192.168.0.30;
> option domain-name-servers
> 68.87.64.196,68.87.66.196,68.80.0.12;
>
> option time-offset -18000; # Eastern Standard Time
>
> host notebook {
> hardware ethernet 00:a0:24:a7:e5:1b;
> fixed-address 192.168.0.5;
> }
> host pooh {
> hardware ethernet 08:00:46:99:6d:e7;
> fixed-address 192.168.0.10;
> }
>
> host bismarck {
> hardware ethernet 00:0F:B5:85:21:E0;
> fixed-address 192.168.0.2;
> }
>
> }
>
|