Ubuntu Server 20.04 网卡启动及配置(配置前请注意文件备份)

ubuntu server 20.04 采用读yaml配置文件的方式修改网卡配置,文件在/etc/netplan/下,一般为 00-installer-config.yaml
打开配置文件

sudo vim /etc/netplan/00-installer-config.yaml

按下i进入编辑模式,修改网卡为DHCP

network:  
   version: 2  
   ethernets:
     eth0:	# 这个以实际网卡为准
       dhcp4: true 

修改为静态ip:

network:
  version: 2
  ethernets:
    eth0:	# 这个以实际网卡为准
      dhcp4: no
      addresses: [192.168.1.2/24]
      optional: true
      gateway4: 192.168.1.1
      nameservers:
              addresses: [218.2.135.1,8.8.8.8]

注意yaml对缩进和空格要求严格

应用更改

sudo netplan apply

你可能感兴趣的:(ubuntu,linux,运维)