Existe uma maneira de recusar uma resposta dhcp de um ip específico?

4

Na minha rede eu tenho dois servidores dhcp (não é minha culpa). Existe uma maneira de recusar uma resposta dhcp proveniente de um servidor dhcp específico?

    
por user2358943 13.06.2014 / 10:25

1 resposta

2

De acordo com a% man_de% manpage, deve ser possível fazer o que você deseja adicionando uma diretiva dhclient.conf ao arquivo reject

   reject cidr-ip-address [, ... cidr-ip-address ] ;

   The reject statement causes the  DHCP  client  to  reject  offers  from
   servers  whose  server identifier matches any of the specified hosts or
   subnets.  This can be used to avoid being configured by rogue  or  mis‐
   configured  dhcp  servers, although it should be a last resort - better
   to track down the bad DHCP server and fix it.
   .
   .
   .   
   reject 192.168.0.0/16, 10.0.0.5;

The above example would cause offers from any server identifier in the  entire
RFC  1918  "Class  C"  network  192.168.0.0/16, or the specific single address
10.0.0.5, to be rejected.

Observe o comentário na manpage embora - é melhor rastrear o servidor DHCP incorreto e corrigi-lo.

    
por steeldriver 13.06.2014 / 13:38

Tags