本教程适用于ubuntu版本为18.04以上
1、首先查找/etc/netplan下的默认网卡配置文件,名称为:01-network-manager-all.yaml,如果没有可以新建,编辑内容如下:
注意:从ethernets开始到最后为新增加内容,其余为自带内容
# Let NetworkManager manage all devices on this system
network:
version: 2
renderer: NetworkManager
ethernets:
ens33: #配置的网卡名称,使用ifconfig -a查看得到
dhcp4: no #dhcp4关闭
addresses: [192.168.42.129/24] #设置本机IP及掩码
gateway4: 192.168.42.2 #设置网关
nameservers:
addresses: [8.8.8.8] #设置DNS
2、配置完成后,执行命令让修改网卡生效:
netplan apply
原文链接:https://www.ywzd.net.cn/index.php/2022/01/12/ubuntu-3/