私は一つ作ったリリースアップグレードの実行私のUbuntu 20.04 LTSサーバーでは、サーバーはいくつかのマイナーな問題で正常に実行されます。
最後の再起動後、ローカルネットワークからサーバーに接続できましたが、インターネット接続に失敗しました。
DNSが正常に動作しないようですが、動作しない原因が何であるかわかりません。
問題を解決する正しい方法は何ですか?
#host google.com
Host google.com not found: 2(SERVFAIL)
# host google.com 8.8.8.8
Using domain server:
Name: 8.8.8.8
Address: 8.8.8.8#53
Aliases:
google.com has address 142.250.186.110
google.com has IPv6 address 2a00:1450:4001:82f::200e
google.com mail is handled by 10 smtp.google.com.
# cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
# 127.0.0.53 is the systemd-resolved stub resolver.
# run "systemd-resolve --status" to see details about the actual nameservers.
nameserver 127.0.0.53
search DOMAINS
ベストアンサー1
展開の更新時にnetplan.ioをインストールしないUbuntu Serverのバグが見つかりました。
この問題を解決するために、インターネットにアクセスできるように/etc/resolv.confにネームサーバー8.8.8.8を設定しました。
その後、netplan.ioをインストールした後もそれの設定ファイルを生成する必要がありました。
# cat /etc/netplan/01-network-manager-all.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5)
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: yes
dhcp6: yes
それからsystemctl ネットワークサービスの再起動インターネット接続が機能します。