相続、親が弱ってきたら銀行の預金は親の面倒を見ているものが全て解約して管理すべきである、銀行は解約させない!!

Dnsmasq

スポンサーリンク
Dnsmasq

dnsmasq dhcp static ip の設定方法

dnsmasqの設定 dhcp-host=3c:2a:f4:4a:1b:29,hll2395dw,192.168.1.40,infinite dnsmasqを再起動する 対象機器をDHCPモードにして再起動する
Dnsmasq

dnsmasq 動作確認方法

設定したdnsmasqのipを指定してdigを実行する dig @192.168.1.35 nas
Dnsmasq

dnsmasq dhcpが動作しない場合

ファイアウォールを設定しているとそのせいでdnsmasqが正常に動かない 解決 apt-get install firewalld firewall-cmd --add-service=dns --zone=work --permanent firewall-cmd --add-service=dhcp --zone=work --permanent
スポンサーリンク
Dnsmasq

dnsmasq local domainの指定

address=/raspi/raspi.localdomain/192.168.1.15
Dnsmasq

raspi dns 指定方法

vi /etc/dhcpcd.conf interface eth0 static ip_address=192.168.1.15/24 static routers=192.168.1.1 static domain_name_servers=192.168.1.17 8.8.8.8 8.8.4.4 interface wlan0 static ip_address=192.168.1.16/2...
Dnsmasq

dnsmasq

resolve.confに反映されるdnsは/etc/network/interfacesのdns-nameservers値を反映して設定される。
Dnsmasq

dnsmasq install

sudo systemctl disable systemd-resolved sudo systemctl stop systemd-resolved sudo rm /etc/resolv.conf echo nameserver 127.0.0.1 | sudo tee /etc/resolv.conf sudo apt-get install dnsmasq sudo vi /etc/dn...
Dnsmasq

dnsmasq cache test

キャッシュが正常?のテスト root@deskmini:/home/ckenko25# dig archlinuxjp.org | grep "Query time" ;; Query time: 27 msec root@deskmini:/home/ckenko25# dig archlinuxjp.org | grep "Query time" ;; Query time: 2 msec r...
Dnsmasq

dnsmasq install

sudo systemctl disable systemd-resolved.service reboot rm /etc/resolv.conf apt-get install dnsmasq
Dnsmasq

dnsmasq port 53 競合 確認

# sudo netstat -plnt | grep ':53' tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 1076/systemd-resolv
Dnsmasq

dnsmasq mint 19 systemd-resolveとport53が競合する

Ubuntu 18.04にはsystemd-resolveが付属しており、Dnsmasqポートと競合するポート53 にバインドするため、無効にする必要があり ます。 次のコマンドを実行して、解決されたサービスを無効にします。 sudo systemctl disable systemd-resolve sudo systemctl stop systemd-resolved また、シンボリックリン...
Dnsmasq

ubuntu debian dnsmasq

インストール $ sudo apt install dnsmasq resolvconf resolv.confの記述 Linux による DNS クエリの処理には resolv.conf で使えるネームサーバは3つまでという制約があります。対応策として、resolv.conf にはローカルホストのネームサーバだけを記述して、外部のネームサーバ用に resolv-file を分けて作成する方法があ...
Dnsmasq

dnsmasq ubuntu

/etc/dnsmasq.conf domain ローカルのドメイン名を設定する domain-needed= 外部のDNSへ問い合わせをする場合は、ホスト名では問い合わせない bogus-priv= プライベートIPアドレスの逆引を上位のDNSへ問い合わせない local= ここにローカル専用ドメインを追加します。これらのドメイン内の問い合わせは/ etc / hostsまたはDHCPのみから回...
Dnsmasq

debian 8 dnsmasq

vi /etc/dnsmasq.conf .... resolv-file=/etc/dnsmasq.resolv.conf vi /etc/dnsmasq.resolv.conf nameserver 8.8.8.8 nameserver 8.8.4.4 vi /etc/resolv.conf search private.ckenko25.jp nameserver 127.0.0.1 検証 ...
Dnsmasq

ubuntu 16.04 dnsmasq 名前解決ができない

ubuntuのインストール いくら調整してもdnsmasqで名前解決ができない できるサーバーはあるが違いがわからない 名前解決できるか # dig www.yahoo.co.jp @192.168.1.3 ログの確認 # tail /var/log/syslog /var/run/dnsmasq/resolv.confがないといっている このファイルにnameserver 8.8.8.8 を記述...
Dnsmasq

dnsmasq が起動のたびに接続可能だったり不能だったりする

ubuntu14.04を16.04にリリースアップグレードしたら dnsmasqが起動のたびに接続可能だったり不能だったりする /etc/resolv.confのnameserverを8.8.8.8にすれば接続できる dnsmasqがおかしいことがわかったので 解決 vi /etc/rc.local sleep 10 /etc/init.d/dnsmasq restart 以上で解決した
Dnsmasq

dnsmasq /etc/network/interfaces 設定

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/networ...
Dnsmasq

dnsmasq デバッグ debug

次サーバーで名前解決ができるか? dig www.yahoo.co.jp @localhost 他のサーバーで名前解決ができるか dig www.google.co.jp @192.168.1.3 dnsmasq他のクライアントからの問い合わせにおうとうするには vi /etc/dnsmasq.conf listen-address=127.0.0.1 #自サーバーのip listen-addre...
Dnsmasq

dnsmasqの再起動で /etc/resolv.confが書き換わる 名前解決ができない

ubuntu 解決 vi /etc/resolv.dnsmasq.conf nameserver 8.8.8.8 nameserver 8.8.4.4 vi /etc/resolv.conf nameserver 127.0.0.1 vi /etc/dnsmasq.conf resolv-file=/etc/resolv.dnsmasq.conf listen-address=127.0.0.1
Dnsmasq

dnsmasq 設定

ubuntu の各バージョンによって設定方法が微妙に違う 確認方法 nslookup www.yahoo.co.jp 解決よ依頼するnameserverのip 例: nslookup www.yahoo.co.jp 192.168.1.2 nslookup www.yahoo.co.jp 127.0.0.1 以上両方でうまくいけばOK pingはOKでもnslookupがコケる場合がある 設定を見...
スポンサーリンク