Ubuntu Server 20.04 LTS:执行 ping 时出现“网络不可达”

Ubuntu Server 20.04 LTS:执行 ping 时出现“网络不可达”

我更改了 Ubuntu Server 中的 .yaml 文件,因为我需要使用 SSH 协议从另一台 Ubuntu 机器访问它(两者都在 VirtualBox 中虚拟化)。之后,我应用了更改并尝试 ping 8.8.8.8,但它给了我“网络不可达”消息。我做错了什么?在更改 .yaml 文件之前,ping 是正确的。

network:
  version: 2
  renderer: networkd
  ethernets:
    enp0s3:
      dhcp4: no
      addresses: [192.168.1.200/24]
      gateway4: 192.168.1.1
      nameservers:
        addresses: [8.8.8.8, 8.8.4.4]

我还在配置选项中将 Ubuntu Server 网络设置为 bridget。两个版本都是 20.04

相关内容