Ubuntu 18.04にsystemd-resolvedとdnsmasqの組み合わせが導入され、ネットワーク接続が高度な機能になっていることがわかりました。
最終的に試され、テストされたネットワーキング方法を得るために、Ubuntu 18.04からこれらのコンポーネントを削除する正しい方法は何ですか?
答え1
ポート53を使用する基本サービスはsystemdによって確認されます。これを無効にするには、次のオプションを使用します。
sudo systemctl disable systemd-resolved
sudo systemctl stop systemd-resolved
dnsmasqも無効にする必要がある場合、オプションは次のとおりです。
sudo systemctl disable dnsmasq
sudo systemctl stop dnsmasq