这个是ununtu20的网络配置 # This file is generated from information provided by 2 # the datasource. Changes to it will not persist across an instance. 3 # To disable cloud-init's network configuration capabilities, write a file 4 # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: 5 # network: {config: disabled} 6 network: 7 version: 2 8 ethernets: 9 eth0: 10 addresses: 11 - 172.16.104.12/24 12 gateway4: 172.16.104.254 13 match: 14 macaddress: fa:16:3e:14:cf:7d 15 mtu: 1500 16 set-name: eth0 我要加dns怎么加
时间: 2024-02-10 09:11:46 浏览: 187
你可以按照以下步骤在 Ubuntu 20.04 中添加 DNS:
1. 打开 /etc/netplan 配置目录,使用以下命令:
```
sudo nano /etc/netplan/00-installer-config.yaml
```
2. 在 "ethernets" 部分下添加以下内容:
```
nameservers:
addresses: [8.8.8.8, 8.8.4.4] # 在此处添加你的 DNS 服务器地址
```
请注意,这里使用的是 Google 的 DNS 服务器地址,你可以将其替换为你所使用的 DNS 服务器地址。
3. 保存文件并退出。
4. 使用以下命令更新网络配置:
```
sudo netplan apply
```
5. 确认 DNS 是否正确配置。使用以下命令检查 DNS 配置:
```
cat /etc/resolv.conf
```
如果看到正确的 DNS 服务器地址,则说明配置成功。
希望这可以帮助你在 Ubuntu 20.04 中添加 DNS。
阅读全文