系统相关
首页 > 系统相关> > Ubuntu1804修改网卡名称和配置IP地址

Ubuntu1804修改网卡名称和配置IP地址

作者:互联网

修改网卡名称

编辑/etc/default/grub文件,将GRUB_CMDLINE_LINUX=""修改为GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
执行update-grub或grub-mkconfig -o /boot/grub/grub.cfg重新生成/boot/grub/grub.cfg文件。

配置IP地址

网卡配置文件路径为/etc/netplan/01-netcfg.yaml

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0: 
      addresses: 
        - 172.20.1.101/24  # IPv4地址
      gateway4: 172.20.1.254 # IPv4网关
      nameservers:
        addresses:  # DNS地址
          - 223.5.5.5
          - 223.6.6.6

标签:Ubuntu1804,addresses,GRUB,cfg,grub,网卡,etc,IP地址
来源: https://www.cnblogs.com/liy36/p/15029734.html