Ok I am doing something wrong but I don't see it.
The situation:
1x 10GBe uplink to internal network (same VLAN as the 1GBe internal network)
1x 1GBe uplink to internal network (same VLAN as the 10GBe internal network)
1x 1GBe uplink to external network (diffrent VLAN's)
What am i tring to do:
10GBe for dedicated storage/migration/cluster
1GBe uplink internal for management
1 GBe uplink for external network
I thought:
vmbr0 -> 10GBe 10.221.183.92 no gateway
vmbr1 -> 1GBe 10.221.184.92 gateway 10.221.184.1
vmbr9 -> external so no ip for this bridge
But I have now ARP flapping issues:
arp: 10.221.184.92 moved from 80:30:e0:0d:2c:c0 to 48:df:37:ae:78:a0 on lagg0
arp: 10.221.184.92 moved from 48:df:37:ae:78:a0 to 80:30:e0:0d:2c:c0 on lagg0
the MAC 80:30:e0:0d:2c:c0 is vmbr2
the MAC 48:df:37:ae:78:a0 is vmbr1
What am I doing wrong here?
The situation:
1x 10GBe uplink to internal network (same VLAN as the 1GBe internal network)
1x 1GBe uplink to internal network (same VLAN as the 10GBe internal network)
1x 1GBe uplink to external network (diffrent VLAN's)
What am i tring to do:
10GBe for dedicated storage/migration/cluster
1GBe uplink internal for management
1 GBe uplink for external network
I thought:
vmbr0 -> 10GBe 10.221.183.92 no gateway
vmbr1 -> 1GBe 10.221.184.92 gateway 10.221.184.1
vmbr9 -> external so no ip for this bridge
But I have now ARP flapping issues:
arp: 10.221.184.92 moved from 80:30:e0:0d:2c:c0 to 48:df:37:ae:78:a0 on lagg0
arp: 10.221.184.92 moved from 48:df:37:ae:78:a0 to 80:30:e0:0d:2c:c0 on lagg0
the MAC 80:30:e0:0d:2c:c0 is vmbr2
the MAC 48:df:37:ae:78:a0 is vmbr1
What am I doing wrong here?
Code:
auto lo
iface lo inet loopback
iface eno5 inet manual
iface ens1f0 inet manual
iface ens1f1 inet manual
iface eno6 inet manual
iface eno7 inet manual
iface eno8 inet manual
auto vmbr1
iface vmbr1 inet static
address 10.221.184.92
netmask 24
gateway 10.221.184.1
bridge-ports eno5
bridge-stp off
bridge-fd 0
#INTERN
auto vmbr0
iface vmbr0 inet static
address 10.221.183.92
netmask 24
bridge-ports ens1f0
bridge-stp off
bridge-fd 0
#INTERN 10G
auto vmbr9
iface vmbr9 inet manual
bridge-ports eno8
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
#EXTERN
Last edited: