Ubuntu如何配置静态IP

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu如何配置静态IP相关的知识,希望对你有一定的参考价值。

Ubuntu编辑网卡配置静态地址时,有时候会失效,以下方法有效解决了该问题。

本文参考文章:https://linuxize.com/post/how-to-configure-static-ip-address-on-ubuntu-18-04/

一、查看网卡名称ip address

二、编辑netplan网络管理工具

sudo vi /etc/netplan/01-network-manager-all.yaml 
#Let NetworkManager manage all devices on this system
network:
  version: 2
  renderer: NetworkManager
  ethernets:
    ens3:
        dhcp4: no
        dhcp6: no 
        addresses: [192.168.0.222/24]                  #配置网卡IP
        gateway4: 192.168.0.1                              #配置网关
        nameservers:
            addresses: [114.114.114.114, 8.8.8.8]   #配置DNS
*温馨提示:编辑yaml文件时需严格按照格式来,空格不能使用Tab键缩进,每个冒号后边均有一个空格。*

使用以下命令应用配置即可

sudo netplan --debug apply           #加--debug参数可以显示报错信息,进行调试

以上是关于Ubuntu如何配置静态IP的主要内容,如果未能解决你的问题,请参考以下文章

如何给ubuntu虚拟机设置静态ip地址

ubuntu静态ip上网的网络设置

ubuntu怎么修改静态ip地址

Ubuntu如何配置静态IP

修改Ubuntu配置文件已达到修改静态IP地址

ubuntu20.04配置置静态ip,ubuntu设置静态ip方法