Vxlan cofiguration

Hi

i am trying to find sample config for vxlan to connect two setup which are behind different firewalls but in same subnet.

is this possible using vxlan, i’m not able to find any sample config for vxlan setup.

Regards
senthil

Hello senthil.

I’ve never tried VxLAN.
But, Is this config helpful for you?

http://vyos.net/wiki/VXLAN

If you want to know more detail about VxLAN, Please let me know.
I’ll try to ask author about configuration.

 interfaces {
     bridge br0 {
     }
     ethernet eth0 {
         address dhcp
     }
     loopback lo {
     }
     vxlan vxlan0 {
         bridge-group {
             bridge br0
     }
     group 239.0.0.1
         vni 0
     }
     vxlan vxlan1 {
         address 192.168.0.1/24
         dev eth0
         group 239.0.0.1
         vni 1
     }
 }


Hiroyuki Sato

hi hiroysato,

thanks for the link, assuming i have two setup as per image below connected to internet then in this case how should i configure the bridge with vxlan so that both the location lan can communicate with each other

[attachment=35]

Regards
senthil