O dhclient-script
está fazendo isso. Ele verifica quais servidores de nomes e domínios estão visíveis. Às vezes isso é útil.
De acordo com sua página de manual,
When it starts, the client script first defines a shell function,
make_resolv_conf
, which is later used to create the/etc/resolv.conf
file. To override the default behaviour, redefine this function in the enter hook script.On after defining the make_resolv_conf function, the client script checks for the presence of an executable
/etc/dhcp/dhclient-enter-hooks
script, and if present, it invokes the script inline, using the Bourne shell'.'
command. The entire environment documented under OPERATION is available to this script, which may modify the environment if needed to change the behaviour of the script. If an error occurs during the execution of the script, it can set the exit_status variable to a nonzero value, and/sbin/dhclient-script
will exit with that error code immediately after the client script exits.
Por exemplo, como mostrado em Como: Certifique-se de que o /etc/resolv.conf nunca seja obtido Atualizado pelo cliente DHCP , você pode criar ou anexar a /etc/dhcp/dhclient-enter-hooks
essa função fictícia:
make_resolv_conf(){
:
}