netplan 配置-使用 PxE 端口将多个 PoE 设备连接到 ubuntu 服务器

netplan 配置-使用 PxE 端口将多个 PoE 设备连接到 ubuntu 服务器

我有一台带有 PxE 端口的 asrock ep2c602 主板服务器。该服务器通过以太网连接到互联网路由器。我想将一些 PoE 设备连接到服务器并使其在本地网络中可用,但不知道如何配置 netplan 以使其充当交换机并为连接到它的设备提供互联网/IP。我尝试将其配置为网桥,但没有成功。这是我的 /etc/netplan/01-netcfg.yaml

network:
  version: 2
  renderer: networkd
  ethernets:
    enp7s0:
      dhcp4: no
      optional: true
    enp6s0:
      dhcp4: no
      optional: true
    enp9s0:
      dhcp4: no
      optional: true
    enp10s0:
      dhcp4: no
      optional: true
    enp11s0:
      dhcp4: no
      optional: true
    enp12s0:
      dhcp4: no
      optional: true
  bridges:
    br0:
      dhcp4: no
      addresses:
        - 192.168.0.55/24
      routes:
        - to: default
          via: 192.168.0.1
      nameservers:
        addresses:
          - 192.168.0.1
      interfaces:
        - enp7s0
        - enp6s0
        - enp9s0
        - enp10s0
        - enp11s0
        - enp12s0

相关内容