0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[01] docker-compose を使って即座に dnsmasq を構築する (構築手順のみ)

Last updated at Posted at 2021-08-26
本シリーズのトップページ
https://qiita.com/robozushi10/items/e2ed733e09c9e39407f2

概要

docker-compose を使って即座に dnsmasq を構築する手順を記す.

ここでは、私にとって最短手番での dnsmasq の起動手順を記す.
説明については、[02] に記した.

なお、本手順は物理ホストの 53番ポートを解放済みであることを前提にしている.

手順

初回起動

## docker-compose.yml など一式を clone する
$ git clone https://github.com/robozushi10/qiita-dnsmasq.git
$ cd qiita-dnsmasq

$ vim PV/etc/dnsmasq.d/add_hosts
## /etc/hosts と同じ要領で記述する
10.208.200.123  piyo

$ docker-compose up -d

これで、物理ホストの IP と 53 ポートを DNSサーバとして使用すれば
名前解決ができるはずである.

IPとマシンの定義を変更したい場合

$ vim PV/etc/dnsmasq.d/add_hosts
(IPとマシン名を定義する)

$ docker-compose restart

以上.

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?