aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlavio Leitner <fbl@redhat.com>2016-05-05 13:43:36 -0400
committerBryn M. Reeves <bmr@redhat.com>2016-05-26 18:22:28 +0100
commitc43afa8fec9096dc69be1581496369980a8ad586 (patch)
tree26c6510562eb32af7c3b5d463dece62075429952
parent85f41579db58385cf98b673f4f4e23af3629d6cd (diff)
downloadsos-c43afa8fec9096dc69be1581496369980a8ad586.tar.gz
[openvswitch] Capture a list of listening ports
Often tunnels require to listen on a specific ports which can be the standard one or another. Signed-off-by: Flavio Leitner <fbl@redhat.com>
-rw-r--r--sos/plugins/openvswitch.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
index 78b54951..5e8c95a5 100644
--- a/sos/plugins/openvswitch.py
+++ b/sos/plugins/openvswitch.py
@@ -59,7 +59,9 @@ class OpenVSwitch(Plugin):
# Capture cached routes
"ovs-appctl ovs/route/show",
# Capture tnl arp table"
- "ovs-appctl tnl/arp/show"
+ "ovs-appctl tnl/arp/show",
+ # Capture a list of listening ports"
+ "ovs-appctl tnl/ports/show"
])
# Gather additional output for each OVS bridge on the host.