前提・実現したいこと
不定期にUbuntuがネットから切り離される問題について、力をお貸しください。
発生している問題・エラーメッセージ
$ sudo apt update [sudo] password for owner: Err:1 http://archive.ubuntu.com/ubuntu focal InRelease Temporary failure resolving 'archive.ubuntu.com' Err:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease Temporary failure resolving 'archive.ubuntu.com' Err:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease Temporary failure resolving 'archive.ubuntu.com' Err:4 http://archive.ubuntu.com/ubuntu focal-security InRelease Temporary failure resolving 'archive.ubuntu.com' Reading package lists... Done Building dependency tree Reading state information... Done All packages are up to date. W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/focal/InRelease Temporary failure resolving 'archive.ubuntu.com' W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/focal-updates/InRelease Temporary failure resolving 'archive.ubuntu.com' W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/focal-backports/InRelease Temporary failure resolving 'archive.ubuntu.com' W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/focal-security/InRelease Temporary failure resolving 'archive.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead.
試したこと
DNSがおかしいのはなんとなくわかっています
https://yoshinorin.net/2020/08/22/wsl2-network-error/
このサイトを見て
/etc/resolvconf/resolv.conf
の設定を
bash
1#/etc/resolvconf/resolv.conf 2nameserver 8.8.8.8
で一時的には解決しました。
が、再起動で再びだめになります。書いた設定が上書きされてしまうようです。
補足情報(FW/ツールのバージョンなど)
Ubuntu のバージョンは
Ubuntu Server 20.04.3 LTS
書き換え前、そして再起動で上書きされる設定は
bash
1# /etc/resolv.conf 2nameserver 127.0.0.53 3options edns0 trust-ad
です。
奇妙なことに、この設定でも必ず接続できないわけではなく、不定期に外部に繋がらなくなるようです。原因がさっぱりわかりません。
サーバーのローカルIPは192.168.1.80
に固定しており、ルーターのアドレスは192.168.1.1
です。
固定方法の追記
/etc/netplan/
配下に00-installer-config.yaml
が存在していて、ここで編集しようとしたのですが、
https://qiita.com/yas-nyan/items/9033fb1d1037dcf9dba5
この記事を見て思い直し、
99-manual.yaml
というファイルを同じ階層に設置、
yaml
1network: 2ethernets: 3enp2s0: 4dhcp4: false 5addresses: [192.168.1.80/24] 6gateway4: 192.168.1.1 7version: 2
と記載しました。
IPの固定自体は現在問題なく設定できています。
回答3件
あなたの回答
tips
プレビュー