Hi everyone,
i test the last days SDN on my cluster (v7.1-10, lasted updates) and detect some problem with VXLAN over wireguard.
The automatic create config is something like this for three nodes:
The "<...>" are placeholder and need to replace with the corresponding value.
With this configuration the connection between the nodes are very bad, i don't get a connection respectively after i start a ping i need to wait 5-10 sec to get a result.
I can ping the wireguard peer-nodes without a problem, so i think this is a configure problem this vxlan.
After some searching I came across this website: Static VXLAN Tunnels (NVIDEA Docs)
Under the section "Configure Static VXLAN Tunnels", in the point "Linux Commands" we can see an example configuration of vxlan. If we use this as an output point and adjust our network config like this:
VXLAN works now over wireguard without a problem, the connection (pings) are very good, not much worse than without vxlan.
The change in the config is the use of the option "vxlan-local-tunnelip" for the local node ip-address.
Therefore my question if you can adjust the package so that the vxlan configuration is generated corrected.
Thanks for your help
i test the last days SDN on my cluster (v7.1-10, lasted updates) and detect some problem with VXLAN over wireguard.
The automatic create config is something like this for three nodes:
Code:
auto <zone_name>_<vnet_name>
iface <zone_name>_<vnet_name>
vxlan-id <vnet_id>
vxlan_remoteip <ip-address_node01>
vxlan_remoteip <ip-address_node02>
vxlan_remoteip <ip-address_node03>
mtu <mtu_of_underlayer_network>
The "<...>" are placeholder and need to replace with the corresponding value.
With this configuration the connection between the nodes are very bad, i don't get a connection respectively after i start a ping i need to wait 5-10 sec to get a result.
I can ping the wireguard peer-nodes without a problem, so i think this is a configure problem this vxlan.
After some searching I came across this website: Static VXLAN Tunnels (NVIDEA Docs)
Under the section "Configure Static VXLAN Tunnels", in the point "Linux Commands" we can see an example configuration of vxlan. If we use this as an output point and adjust our network config like this:
Code:
auto <zone_name>_<vnet_name>
iface <zone_name>_<vnet_name>
vxlan-id <vnet_id>
vxlan-local-tunnelip <ip-address_local_node>
vxlan_remoteip <ip-address_other_node02>
vxlan_remoteip <ip-address_other_node03>
mtu <mtu_of_underlayer_network>
VXLAN works now over wireguard without a problem, the connection (pings) are very good, not much worse than without vxlan.
The change in the config is the use of the option "vxlan-local-tunnelip" for the local node ip-address.
Therefore my question if you can adjust the package so that the vxlan configuration is generated corrected.
Thanks for your help