vi /etc/dnsmasq.conf
resolv-file=/etc/resolv.dnsmasq.conf
listen-address=127.0.0.1
listen-address=192.168.1.2 #自サーバーIP
vi /etc/resolv.dnsmasq.conf
nameserver 8.8.8.8
nameserver 8.8.4.4
vi /etc/network/interfaces
auto p2p1
#iface p2p1 inet dhcp
iface p2p1 inet static
address 192.168.1.2
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0
broadcast 192.168.1.255
dns-nameservers 8.8.8.8 8.8.4.4
search private.ckenko25.jp
vi /etc/resolv.conf
nameserver 127.0.0.1 #これになっていればOK
192.168.1.2からhostsをコピー
rsync /etc/hosts –rsync-path=”sudo rsync” ckenko25@192.168.1.20:/etc
確認
外部
dig www.google.co.jp @localhost
内部
dig ubuntu-sub @localhost
両方共、正常に返答があればOK
他のクライアントから確認
dig www.google.co.jp @192.168.1.2
dig ubuntu-sub @192.168.1.2
コメント