aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2012-10-05 17:55:02 -0700
committerPravin B Shelar <pshelar@nicira.com>2012-10-05 17:55:02 -0700
commit2de795adb9632fc07ea49ced36eaa17c3f3fd106 (patch)
treedf16121bf33ee3f88b1e73afcd7226f55eb1e3c8 /debian
parenta457574880b01a30c16e9b92c9ead760631de3c1 (diff)
datapath: 64-bit GRE support
Extend GRE to have a 64-bit key. Use GRE sequence number to store upper 32-bits of the key, but this is not standard way of using GRE sequence number. Bug #13186 Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'debian')
-rwxr-xr-xdebian/ovs-monitor-ipsec2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/ovs-monitor-ipsec b/debian/ovs-monitor-ipsec
index ffaa979d..414d18ba 100755
--- a/debian/ovs-monitor-ipsec
+++ b/debian/ovs-monitor-ipsec
@@ -441,7 +441,7 @@ def main():
new_interfaces = {}
for rec in idl.tables["Interface"].rows.itervalues():
- if rec.type == "ipsec_gre":
+ if rec.type == "ipsec_gre" or rec.type == "ipsec_gre64":
name = rec.name
options = rec.options
peer_cert_name = "ovs-%s.pem" % (options.get("remote_ip"))