【发布时间】:2021-03-17 10:14:48
【问题描述】:
我正在运行 proxmox V 6.3 的集群中设置 2 台服务器
我创建了一个桥接接口 vmbr0
并尝试创建 vlan 接口
当我去重新加载网络时,我得到了错误
error: netlink: vmbr0.500: cannot create vlan vmbr0.500 500: operation failed with 'Operation not supported' (95)
我在另一台服务器上进行了此设置,它工作正常,没有问题。我对我尝试过的事情感到茫然。
下面是我的接口文件。
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage parts of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
iface eno1 inet manual
auto eno3
iface eno3 inet manual
address 192.168.8.238
gateway 192.168.8.1
iface eno2 inet manual
iface eno4 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge-ports eno1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr0.500
iface vmbr0.500 inet static
address 172.20.0.3
netmask 255.255.255.0
broadcast 172.20.0.255
network 172.20.0.0
vlan_raw_device vmbr0
【问题讨论】: