查看你的网卡名称
1 | ifconfig |
例如我要更改 ens160 这个网卡
1 | cd /etc/netplan |
找到文件,名字可能不一样
1 | nano 00-installer-config.yaml |
更改配置
1 | # This is the network config written by 'subiquity'n |
配置
- ip地址:192.168.1.6
- 子网掩码: 255.255.255.0
- 网关:192.168.1.1
- DNS服务器:192.168.1.1, 8.8.8.8
应用更改
1 | netplan apply |