在 netplan 上设置静态 IP 地址后,我无法访问互联网

在 netplan 上设置静态 IP 地址后,我无法访问互联网

我目前正在使用 ubuntu LTS,并且我正在尝试设置一个静态 IP 地址,因为我计划使用 K3sup。

经过一番研究后,我改变了

/etc/netplan/50-cloud-init.yaml

这些设置

# This file is generated from information provided by the datasource.  Changes
# to it will not persist across an instance reboot.  To disable cloud-init's
# network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
    ethernets:
        eth0:
            dhcp4: false
            addresses: [192.168.1.83/24]
            gateway4: 192.168.0.1
            nameservers:
             addresses: [1.1.1.1, 8.8.8.8]
    version: 2

我已经应用了设置,它似乎接受了新的 IP 地址。问题是当我 ping google 时,什么都没通。

这里的问题是什么?

相关内容