环境信息

系统:Ubuntu 18.04.5 LTS

内核:GNU/Linux 4.15.0-112-generic x86_64

流程

编辑 /etc/netplan/00-installer-config.yaml ,增加网卡配置信息。PS:不同安装方式,yaml文件名略有不同,需自行在 /etc/netplan/ 目录下寻找

1
2
3
4
5
6
7
8
9
# This is the network config written by 'subiquity'
network:
ethernets:
ens160:
addresses: [111.111.111.61/24]
gateway4: 111.111.111.1
nameservers:
addresses: [114.114.114.114]
version: 2

执行命令 netplan apply 让配置直接生效

参考文档