I've supermicro-server with 2 NICs connected to a Mikrotik CRS309 switch running SwOS.
I would like to use the 2 NICs as bonded channels serving the management gui on VLAN 50 and the VMs on a VLAN configured per VM.
I did the setup below which works for the management gui and for the networking between VMs running on the server.
pinging from the hypervisor to the router works perfectls, pinging between VMs works perfectly
But if I try to ping the router from a VM i get about 90% package loss. Every now and then a package reaches the router (also verified by packet sniffing on the router).
This is my /etc/network/interfaces.
Any idea what I'm doing wrong here?
As the management gui works and the LACP-Tunnel is shown correctly on the switch I'm pretty sure the bonding works.
And I consider it really strange that sometimes a package gets really to the router - if I'm completely wrong I'd expect no package going through...
Thanks
Lukas
I would like to use the 2 NICs as bonded channels serving the management gui on VLAN 50 and the VMs on a VLAN configured per VM.
I did the setup below which works for the management gui and for the networking between VMs running on the server.
pinging from the hypervisor to the router works perfectls, pinging between VMs works perfectly
But if I try to ping the router from a VM i get about 90% package loss. Every now and then a package reaches the router (also verified by packet sniffing on the router).
This is my /etc/network/interfaces.
Any idea what I'm doing wrong here?
As the management gui works and the LACP-Tunnel is shown correctly on the switch I'm pretty sure the bonding works.
And I consider it really strange that sometimes a package gets really to the router - if I'm completely wrong I'd expect no package going through...
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto eno2
iface eno2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
auto bond0.50
iface bond0.50 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr1
iface vmbr1 inet static
address 10.10.10.10/24
gateway 10.10.10.254
bridge-ports bond0.50
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
Thanks
Lukas
Last edited: