Disabilita il servizio dhcp in dnsmasq


12

Vorrei usare solo dnsmasq per inoltrare tutte le richieste DNS al server DNS di Google e disabilitare dhcp ...

Come posso ottenere questo risultato?

Risposte:


13

dnsmasq ha il server dhcp disabilitato di default. Per abilitarlo devi decommentare le righe relative a dhcp in/etc/dnsmasq.conf

per inoltrare tutte le richieste a 208.67.222.222 è sufficiente aggiungere (senza toccare la configurazione di dnsmasq) in /etc/resolv.conf:

nameserver 127.0.0.1 
# In order to configure dnsmasq to act as cache for the host on which  it
# is  running, put [as the first line] "nameserver  127.0.0.1" in /etc/resolv.conf to force
# local processes to send queries to dnsmasq. [...]
# dnsmasq is smart enough to ignore this line and forward all queries appropriately, 
# while all other applications will send all their queries to dnsmasq. 
nameserver 208.67.222.222

Questo è tutto :)


@CraigHicks Per favore, spiega meglio. La domanda qui è: "Disabilita il servizio dhcp in dnsmasq"
Pitto

1
Il mio errore - scusa.
Craig Hicks,

5

Basta commentare le righe relative a dhcp nel file dnsmasq.conf e quindi riavviare dnsmasq.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.