Ubuntu Server 18.04 网络设置不生效的解决

Posted 逸鹏说道

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu Server 18.04 网络设置不生效的解决相关的知识,希望对你有一定的参考价值。

在Ubuntu18.04中,传统的配置/etc/network/interfaces已无用https://www.cnblogs.com/dunitian/p/6658578.html

新方法:修改 /etc/netplan/50-cloud-init.yaml

配置如下:

network:
    ethernets:
        eth0:
            addresses: [192.168.36.202/24]
            gateway4: 192.168.36.1
            nameservers:
                    addresses: [114.114.114.114,180.76.76.76]
    version: 2

重启网络sudo netplan apply

如果网络不正常可以使用:sudo netplan --debug apply

测试一下远程连接

以上是关于Ubuntu Server 18.04 网络设置不生效的解决的主要内容,如果未能解决你的问题,请参考以下文章

VMware下Ubuntu 18.04Server设置静态IP图文教程

linux运维Ubuntu18.04 设置网络信息(netplan之yaml文件)

linux运维Ubuntu18.04 设置网络信息(netplan之yaml文件)

linux运维Ubuntu18.04 设置网络信息(netplan之yaml文件)

ubuntu server18.04配置网络

Ubuntu Server 18.04 修改网路配置