Perdendo o IP estático e obtendo o IP do DHCP

1

Eu tenho uma máquina Debian 7.1 que é o nosso sistema interno de detecção de intrusões rodando snort. Ele começou a me descascar e vai puxar um endereço DHCP mesmo que eu tenha configurado para estática. Isso acontece a cada poucas horas.

Aqui está meu /etc/network/interfaces

    # This file describes the network interfaces available on your system
    # and how to activate them. For more information, see interfaces(5).

    # The loopback network interface
    auto lo eth0 eth1
    iface lo inet loopback

    # The primary network interface
    allow-hotplug eth0
    iface eth0 inet static
            address 10.10.10.107
            netmask 255.255.255.0
            gateway 10.10.10.1

    iface eth1 inet manual
            up ifconfig $IFACE 0.0.0.0 up
            up ifconfig $IFACE promisc
            down ifconfig down
    
por slm 31.07.2013 / 14:58

1 resposta

5

Provavelmente, há network-manager ou wicd em execução. Desativar / Desinstalar. Você pode encerrar temporariamente network-manager com service network-manager stop .

Também pode haver alguns programas dhclient em segundo plano. Executar

ps ax | grep  [d]hclient

ou

pgrep dhclient

, verifique se há clientes DHCP em execução. Você pode matá-los via killall dhclient .

Teoricamente, existem outros clientes DHCP com nomes diferentes, mas é improvável que eles estejam instalados.

    
por 31.07.2013 / 15:32