ubuntu 设置网卡

ubuntu 20.04版 设置网卡

位置:/etc/netplan/01-netcfg.yaml

# Let NetworkManager manage all devices on this system
network:
 
      version: 2
 
      renderer: networkd
 
      ethernets:
 
        ens33:
 
          addresses: [192.168.1.241/24]
 
          gateway4: 192.168.1.1
 
          nameservers:
 
            addresses: [192.168.1.1]   
 
         


设置好了执行 sudo netplan apply

注意
编辑要注意格式的
格式要求很高,首先是不要使用tab,全部使用空格

出现类似错误:line8 column 6:cloud not find expected ‘:’ #提示是冒号:后面没加空格
出现类似错误:netplan found character that cannot start any token,#提示是没有按五个层次写配置文档,一定要下一层比上一层多空一格或以上。
出现类似错误: Invalid YAML: inconsistent indentation: #缩进不对,就是每一层没有严格缩进
 

你可能感兴趣的:(报错,ubuntu)