Netplan 配置

Netplan 配置

当我应用以下配置时,一切都正常(即:我能够通过 eth0 和 wlan0 访问我的服务器)。但是,在应用 netplan 配置后,我收到以下输出:

****(生成:22200):警告:17:21:13.188:验证默认路由一致性时遇到问题。请设置多个路由表并改用routing-policy。错误:IPv4 的默认路由声明冲突(表:main,度量:default),首先在 wlan0 中声明,但也在 eth0 中声明”

我的 netplan 配置如下:

network:
version: 2
ethernets:
    eth0:
        addresses: [192.168.50.212/24]
        gateway4: 192.168.50.1
        optional: true
        dhcp4: false
        nameservers:
                addresses: [1.1.1.1,1.0.0.1]
# add wifi setup information here ...
wifis:
    wlan0:
        addresses: [192.168.50.212/24]
        optional: true
        gateway4: 192.168.50.1
        access-points:
            "my_ssid":
                password: "password_here"
        dhcp4: false
        nameservers:
                addresses: [1.1.1.1,1.0.0.1]

~
我找了好几天都没找到解决办法。任何建议都非常感谢。

相关内容