相続財産の泥棒の仕組み
Dnsmasq
dnsmasq 16.04
インストール apt-get install dnsmasq これだけでインストールしたマシンの名前解決はdnsmaqが行ってくれる そしてキャッシングしてくれる 内部マシンの名前解決は/etc/hostsに各マシンのhostnameを記述しておけばOK /etc/resolv.confを確認する nameserver 127.0.0.1 こでがあるか確認する ないときを追加記述する
dnsmasq
apt-get install dnsmasq cd /etc mv resolv.conf resolv.conf.dnsmasq vi /etc/dnsmasq.conf # Change this line if you want dns to get its upstream servers from # somewhere other that /etc/resolv.conf reso...
dhcp dnsmasq を2台体制にする
192.168.1.2 主サーバー ubuntu 192.168.1.6 セカンドサーバー xs35vl3 dhcpのipは重複しないように設定する ubuntuのdhcp設定 vi /etc/dhcp/dhcpd.conf default-lease-time 86400; max-lease-time 172800; option subnet-mask 255.255.255.0; opti...
dnsmasq でhostnameで引けるようにする
ポイントは DNSサーバーはdnsmasqサーバーだけを指定する googleのDNSなどを併記してはだめ 理由はhostnameが引けない時が出てくる windowsはDNSを順番に検索しないようである。
dnsmasq 正常?
確認はnslookupコマンドで行う nslookup google.co.jp dnsmasqのip 結果 nslookup google.co.jp 192.168.1.2 Server: 192.168.1.2 Address: 192.168.1.2#53 Non-authoritative answer: Name: google.co.jp Address: 216.58.196.22...
dnsmasq の設定
vi /etc/dnsmasq.conf domain-needed ← ドメインの付加されていない名前解決は上位DNSに転送しない bogus-priv ← プライベートIPの逆引きは上位DNSに転送しない expand-hosts ← domain= で指定されたドメインをhostnameに補完する domain=private.ckenko25.jp ← 補完するドメイン local=/pr...
dnsmasq windows7のブラウザで名前解決ができない
ubuntuデスクトップ 解決した。 vi /etc/dnsmasq.conf # Never forward plain names (without a dot or domain part) #名前解決要求を上位DNSサーバに転送しない domain-needed # Never forward addresses in the non-routed address spaces. #プライ...
dnsmasq
apt-get install dnsmasq vi /etc/resolv.conf nameserver 127.0.0.1 vi /etc/host.conf order hosts,bind multi on 名前解決における検索順序です。 hostsファイル、DNSの順番に調べます。 BINDは、DNSのソフト名です。 multi on はhostsファイルで、ひとつのホスト名に複数の...