欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2024-01-14 18:32:10
在Ubuntu18.04中,传统的配置/etc/network/interfaces已无用 新方法:修改 配置如下: 重启网络 如果网络不正常可以使用: 测试一下远程连接 ......

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

新方法:修改 /etc/netplan/50-cloud-init.yaml
Ubuntu Server 18.04 网络设置不生效的解决

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

配置如下:

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
Ubuntu Server 18.04 网络设置不生效的解决
如果网络不正常可以使用:sudo netplan --debug apply

测试一下远程连接
Ubuntu Server 18.04 网络设置不生效的解决