查看网络配置文件
使用命令, 查看网络配置文件
bash
ls -l /etc/netplan/
输出如下(文件名可能不同, 以实际查询为准)
-rw------- 1 root root 191 Mar 17 03:30 00-installer-config.yaml
编辑文件即可修改网络配置
bash
sudo vim /etc/netplan/00-installer-config.yaml
配置参考
静态 IP 配置
yml
network:
ethernets:
enxf8e43bf186b0:
dhcp4: true
nameservers:
addresses: [223.5.5.5,223.6.6.6]
version: 2
动态IP地址配置
yml
network:
ethernets:
enxf8e43bf186b0:
dhcp4: no
addresses: [192.168.59.101/24]
gateway4: 192.168.59.1
nameservers:
addresses: [223.5.5.5,223.6.6.6]
version: 2
enxf8e43bf186b0
为网卡名, 每台电脑都不相同,可以使用名 ip addr
查询