diff options
author | Lorand Jakab <lojakab@cisco.com> | 2013-02-21 21:52:04 -0800 |
---|---|---|
committer | Jesse Gross <jesse@nicira.com> | 2013-02-25 15:55:46 -0800 |
commit | a6ae068b7b3ea1e039279e35ffae6ceddfb73866 (patch) | |
tree | 6bb251af18af260a41b0a02ae859c678e904592b /include/linux/openvswitch.h | |
parent | 54e536a64f432b439832ad51dcd8ae175dac7487 (diff) | |
download | openvswitch-a6ae068b7b3ea1e039279e35ffae6ceddfb73866.tar.gz |
Add support for LISP tunneling
LISP is an experimental layer 3 tunneling protocol, described in RFC
6830. This patch adds support for LISP tunneling. Since LISP
encapsulated packets do not carry an Ethernet header, it is removed
before encapsulation, and added with hardcoded source and destination
MAC addresses after decapsulation. The harcoded MAC chosen for this
purpose is the locally administered address 02:00:00:00:00:00. Flow
actions can be used to rewrite this MAC for correct reception. As such,
this patch is intended to be used for static network configurations, or
with a LISP capable controller.
Signed-off-by: Lorand Jakab <lojakab@cisco.com>
Signed-off-by: Kyle Mestery <kmestery@cisco.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'include/linux/openvswitch.h')
-rw-r--r-- | include/linux/openvswitch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/openvswitch.h b/include/linux/openvswitch.h index 7ee31a222..63d1cacbd 100644 --- a/include/linux/openvswitch.h +++ b/include/linux/openvswitch.h @@ -186,6 +186,7 @@ enum ovs_vport_type { OVS_VPORT_TYPE_GRE, /* GRE tunnel. */ OVS_VPORT_TYPE_VXLAN, /* VXLAN tunnel */ OVS_VPORT_TYPE_GRE64 = 104, /* GRE tunnel with 64-bit keys */ + OVS_VPORT_TYPE_LISP = 105, /* LISP tunnel */ __OVS_VPORT_TYPE_MAX }; |