Saya hanya ingin menggunakan dnsmasq untuk meneruskan semua permintaan dns ke server dns google dan menonaktifkan dhcp ...
Bagaimana saya bisa mencapai hasil ini?
dnsmasq memiliki server dhcp dinonaktifkan secara default. Untuk mengaktifkannya Anda harus batalkan komentar pada baris terkait dhcp di/etc/dnsmasq.conf
untuk meneruskan semua permintaan ke 208.67.222.222 cukup untuk menambahkan (tanpa menyentuh konfigurasi dnsmasq) di /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
Itu dia :)
Cukup komentari baris terkait dhcp di file dnsmasq.conf Anda dan kemudian restart dnsmasq.
sumber