I'm using Proxmox cluster with vlan aware bridge configured. Till now, I've used only low number vlan tags (4-5). But right now I need to run a VM in VLAN 551. I can configure VMs network interface, set tag 551. But that's all I can. No traffic is going out from that VLAN. When I change tag to 4 or 5 - interface works OK.
I tried to manually run VLAN 551 on Proxmox host:
After some tests, I realized that max VLAN number I can use is 126:
no errors here
Has any one of you noticed similar problem?
I tried to manually run VLAN 551 on Proxmox host:
Code:
# /etc/network/interfaces
iface ens15d1.551 inet static
address 172.16.110.70
netmask 255.255.255.192
Code:
ifup ens15d1.551
RTNETLINK answers: No space left on device
ifup: ignoring unknown interface ens15d1.551=ens15d1.551
After some tests, I realized that max VLAN number I can use is 126:
Code:
ifup ens15d1.126
Code:
ifconfig ens15d1.126
ens15d1.126: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 172.16.110.70 netmask 255.255.255.192 broadcast 172.16.110.127
inet6 fe80::268a:7ff:fe75:b1d1 prefixlen 64 scopeid 0x20<link>
ether 24:8a:07:75:b1:d1 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 7 bytes 586 (586.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Has any one of you noticed similar problem?