文書の表示以前のリビジョンバックリンク文書の先頭へ この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。 ====== dnsmasq ====== ===== 概要 ===== * LinuxMint 18.x (Ubuntu 16.04) で dnsmasq による DNS のキャッシュ機能で名前解決をする * 参考サイト: * [[http://gihyo.jp/admin/serial/01/ubuntu-recipe/0020 | 第20回 いろいろなキャッシュ:dnsmasq, cache proxy:Ubuntu Weekly Recipe|gihyo.jp … 技術評論社]] * [[https://gist.github.com/magnetikonline/6236150 | Using Dnsmasq with Ubuntu 16.04LTS/14.04LTS/12.04LTS for virtual machine web application testing.]] ===== 手順 ===== - dnsmasq をインストールする\\ <code bash>$ sudo apt-get install dnsmasq</code> - dnsmasq の設定をする\\ <code bash>$ sudoedit /etc/dnsmasq.conf</code> * 以下のコードのコメントを外して有効化したり、追記したりする\\ <code conf> listen-address=127.0.0.1 cache-size=500</code> - dnsmasq を再起動する\\ <code bash>$ sudo systemctl restart dnsmasq</code> - dnsmasq の動作を確認する\\ <code bash>$ dig @127.0.0.1 google.com</code> - ネットワークマネージャの設定をする\\ <code bash>$ sudoedit /etc/NetworkManager/NetworkManager.conf</code> * 以下の内容をコメントアウト (無効化) する\\ <code conf>dns=dnsmasq</code>↓<code conf>#dns=dnsmasq</code> - ネットワークマネージャを再起動する\\ <code bash>$ sudo systemctl restart NetworkManager</code> - ネットワークの設定の DNS のところの最初に、127.0.0.1 を指定する (以降に通常の DNS を指定する) {{tag>LinuxMint Ubuntu Linux}} linux_mint/dnsmasq.txt 最終更新: 2020/07/13 01:22by mumeiyamibito