From 0e3448bec86afe32b3c566a99fd327df3ca38a6d Mon Sep 17 00:00:00 2001 From: Darshan Vandra Date: Fri, 15 Feb 2019 19:52:17 +0530 Subject: [PATCH] workflow: add traceroute workflow --- statics/workflows/traceroute.yaml | 110 ++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 statics/workflows/traceroute.yaml diff --git a/statics/workflows/traceroute.yaml b/statics/workflows/traceroute.yaml new file mode 100644 index 0000000000..d4e23d5353 --- /dev/null +++ b/statics/workflows/traceroute.yaml @@ -0,0 +1,110 @@ +UUID: "9b598b28-b52e-488f-7b1c-402ac07e59b5" +Name: "Traceroute" +Description: "Traceroute" +Parameters: + - Name: protocol + Description: Protocol + Type: choice + Default: icmp4 + Values: + - Description: "Protocol : ICMPv4/Echo request" + Value: icmp4 + - Description: "Protocol : TCP/IPv4" + Value: tcp4 + - Name: source + Description: Source Node + Type: node + - Name: destination + Description: Destination Node + Type: node +Source: | + function Traceroute(protocol, src, dst) { + var sources = []; + var result = {}; + var pktform = {}; + var G = client.gremlin.G() + G.V().Has('TID', src).ShortestPathTo(Metadata('TID', dst)).then(function(nodes) { + for (var i in nodes) { + if (nodes[0][i].Metadata && nodes[0][i].Metadata.IPV4 && nodes[0][i].Metadata.MAC != null) { + sources.push(nodes[0][i].Metadata); + }else { + if ((nodes[0][i].Metadata && nodes[0][i].Metadata.Neutron && nodes[0][i].Metadata.Neutron.IPV4 != null) && (nodes[0][i].Metadata && nodes[0][i].Metadata.ExtID && nodes[0][i].Metadata.ExtID["attached-mac"] != null)) { + sources.push(nodes[0][i].Metadata); + } + } + } + }) + var capture = new Capture(); + capture.GremlinQuery = "G.V().Has('TID', '" + src + "')"; + return client.captures.create(capture).then(function (c) { + capture = c + }).then(function () { + return sleep(1000) + }).then(function () { + for (i=0; i+1 0 && flows[0].Metric.ABPackets > 0 && flows[0].Metric.BAPackets > 0) { + result[flows[0].Network.A + "- To -" + flows[0].Network.B] = {"Connected" : true, "RTT" : (flows[0].RTT / 1000000).toFixed(3) + " ms" }; + } + return result + }) + } else { + client.G.Flows().Has("Transport.A", pktform[sources[i+1].TID].SrcPort, "Transport.B", pktform[sources[i+1].TID].DstPort, "Transport.Protocol", "TCP", "Network.A", pktform[sources[i+1].TID].SrcIP, "Network.B", pktform[sources[i+1].TID].DstIP).then(function(flows) { + if (flows.length > 0 && flows[0].Metric.ABPackets > 0 && flows[0].Metric.BAPackets > 0) { + result[flows[0].Network.A + "- To -" + flows[0].Network.B] = {"Connected" : true, "RTT" : (flows[0].RTT / 1000000).toFixed(3) + " ms" }; + } + return result + }) + } + } + return result + }).then(function () { + return { + "Trace Route" : sources[0].IPV4[0] + "- To -" + sources[sources.length - 1].IPV4[0], + "Path" : result + } + }).finally(function () { + return client.captures.delete(capture.UUID) + }).catch(function () { + return client.captures.delete(capture.UUID) + }); + }