无法将 MAC 地址与 ubuntu 中的接口绑定

无法将 MAC 地址与 ubuntu 中的接口绑定

我在 AWS 环境中运行 Ubuntu 20.04。尝试将 MAC 地址绑定到 netplan YAML 文件中的接口时。更改未按预期工作。

我按照以下配置操作,系统启动了,但绑定不起作用。我在物理机和 VMware 实例上测试了类似的配置,所有网络接口都启动了,但 macaddress 到接口的绑定不起作用。

network:
  ethernets:
    eth0:
      match:
              macaddress: 00:50:56:b3:86:48
      addresses:
      - 10.10.10.10/24
      gateway4: 10.10.10.1
      nameservers:
        addresses:
        - 10.10.10.2
        - 8.8.8.8
  version: 2

后来我修改了网络 yaml 文件,如下所示:网络接口在 AWS 实例中无法启动,如果我手动执行命令“/sbin/ip link set eth0”,网络接口就会启动。然而,在物理和 VMWare 实例中,它按预期工作,即接口启动并且 macaddress 到接口的映射工作正常。

network:
  ethernets:
    eth0:
              macaddress: 00:50:56:b3:86:48
      addresses:
      - 10.10.10.10/24
      gateway4: 10.10.10.1
      nameservers:
        addresses:
        - 10.0.10.2
        - 8.8.8.8
  version: 2

相关内容