1)查看网卡名称,使用: ifconfig 或者ip link
2)进入netplan目录
cat /etc/netplan
3) 编辑 网络配置文件
vim 01-network-manager-all.yaml
4) 编辑内容如下
network: ethernets: ens160: dhcp4: no addresses: - 10.1.13.74/24 gateway4: 10.1.13.254 nameservers: addresses: - 10.xxx.xx.xx - 10.xxx.xxx.xx version: 2
5) 重启服务
sudo netplan apply
如果报错 systemd-networkd is not running
解决方法,启动network服务
systemctl start NetworkManager
接着执行 sudo netplan apply
查看IP地址是否发生改变
标签:netplan,network,ens160,xxx,网卡,xx,IPV4 From: https://www.cnblogs.com/ychun/p/18309114