systemd-resolved 追加オプション ローテーション Ubuntu 18.04

systemd-resolved 追加オプション ローテーション Ubuntu 18.04

Ubuntu 18.04 LTSアップグレードoptions rotateに追加しようとしていますresolv.conf

Ubuntu 16.04 LTS:

/etc/resolv.conf -> ../run/resolvconf/resolv.conf

options rotate追加するだけで処理されます/etc/resolvconf/resolv.conf.d/body

予想通りの結果。

nameserver 1.1.1.1
nameserver 1.1.2.2
options rotate

18.04 LTS 直接インストール

/etc/resolv.conf -> ../run/resolvconf/resolv.conf
nameserver 127.0.0.53

systemctl disable systemd-resolved
systemctl stop systemd-resolved
apt install network-manager

add to /etc/NetworkManager/NetworkManager.conf
[main]
dns=default

add `options rotate` to `/etc/resolvconf/resolv.conf.d/body`

systemctl restart network-manager
systemctl restart resolvconf

/etc/resolv.conf -> ../run/resolvconf/resolv.conf
nameserver 1.1.1.1
nameserver 1.1.2.2
options rotate

16.04 LTS から 18.04 LTS へのアップグレード

18.04 LTSと同じ手順で、resolv.conf同じスタブリゾルバ127.0.0.53になります。

再起動後、ファイルはoptions rotate

Canonical 開発者が主張しているのはこのメソッドoptions rotateのみを使用して追加する方法はありますか?systemd-resolved

systemd-resolvedアップグレードしたシステムでを無効にするのに役立つ方法 (私が見逃した方法) はありますか?

サーバー上のドライバーの問題のため、クリーン インストールから 16.04 LTS からアップグレードされました。

関連情報