This group is locked. No changes can be made to the group while it is locked.
Re: [OVSDB MDSAL] Creating VXLAN tunnel
Koontz, Marcus G <marcus.g.koontz@...>
Andrej,
toggle quoted message
Show quoted text
I am indeed working on the overlay model provider that will stand up a tunnel using the OVSDB Southbound, but functionality is a work in progress. The overlay would function by sitting on top of the ovsdb southbound and abstract the effort needed now to create the tunnel but some pieces are not yet in place. If you want to see the direction I'm headed so far (warning: it is not yet working as desired): https://git.opendaylight.org/gerrit/#/c/18127/ I haven't been able to create a tunnel using only OVSDB Southbound to date. Stay tuned. Thanks, Marcus -----Original Message-----
From: Sam Hague [mailto:shague@...] Sent: Monday, April 13, 2015 4:34 AM To: Andrej Kincel -X (akincel - Pantheon Technologies SRO at Cisco); Koontz, Marcus G Cc: ovsdb-dev; Paul Quinn (paulq); Reinaldo Penno (rapenno@...) Subject: Re: [ovsdb-dev] [OVSDB MDSAL] Creating VXLAN tunnel Andrej, are you asking for how to find the vtep ip addresses so you can set the local_ip and remote_ip addresses? If so then we get that from using the other_config:local_ip value in the Open_vSwitch table. This commit brought the other_config support into ovsdb: [1]. The value is set manually on the ovsdb node with the following: ipaddr=<ipaddr of vtep> read ovstbl <<< $(ovs-vsctl get Open_vSwitch . _uuid) ovs-vsctl set Open_vSwitch $ovstbl other_config={"local_ip"="$ipaddr"} Then you read that value from the operational and use it in your add-port. local_ip is read from the local and remote ovsdb nodes and supplied to the add-port command. Marcus is working on a tunnel overlay yang model that might do some of this work. It isn't ready yet so doing the above should work until then. Marcus is cc'ed on the email to add info on the overlay model. Thanks, Sam [1] https://git.opendaylight.org/gerrit/#/c/17968/ ----- Original Message ----- From: "Andrej Kincel -X (akincel - Pantheon Technologies SRO at |