mmmm, I'm not sure.Hey @spirit, first off: Thanks for creating this plugin, I'm using it since November in production without any issues and this plugin made me learn so much about how SDN works (way more than my internship, which is also related to sdn, heh) and it works so well!
And now here's a question: Is it possible to use a specific failover IP for VXLAN?
Example: I have two interfaces: vmbr0 and vmbr0:1, my IP bound to vmbr0 which is sadly getting DDoS'd which can cause issues due to host providers (example: OVH, ReliableSite, etc) mitigating DDoS traffic and thinking that the VXLAN traffic is a DDoS attack.
So I wanted to route VXLAN traffic with my failover IP bound to "vmbr0:1", and because it is on a different IP, it won't be attacked by pesky DDoS attacks... but how can I do that?
can you try to edit /etc/network/interfaces.d/sdn
Code:
auto vxlan_yourvnet
iface vxlan_yournvnet
vxlan-id 10000
vxlan_remoteip x.x.x.x
vxlan_remoteip x.x.x.x
mtu 1450
Code:
vxlan-local-tunnelip x.x.x.x -->your failoverip of vmbr0:1
then: ifreload -a (not sure if it can be change online, so maybe ifdown vxlan_yourvnet && ifup vxlan_yourvnet)
do it on each node.
if it's working, it could add an option to specify the interface.
(a new release should be available soon, but I could have time to implement it)