web-dev-qa-db-ja.com

dnsmasqでdhcpサービスを無効にする

すべてのDNSリクエストをGoogleのDNSサーバーに転送してdhcpを無効にするために、dnsmasqのみを使用したいと思います...

どうすればこの結果を達成できますか?

12
Pitto

dnsmasqでは、デフォルトでdhcpサーバーが無効になっています。これを有効にするには、/etc/dnsmasq.confのdhcp関連の行のコメントを外す必要があります

すべてのリクエストを208.67.222.222に転送するには、/etc/resolv.confに(dnsmasq構成に触れずに)追加するだけで十分です。

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

それでおしまい :)

13
Pitto

Dnsmasq.confファイルのdhcp関連の行をコメント化して、dnsmasqを再起動します。

5
EEAA