diff options
author | Flavio Leitner <fbl@redhat.com> | 2016-05-05 13:43:36 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-26 18:22:28 +0100 |
commit | c43afa8fec9096dc69be1581496369980a8ad586 (patch) | |
tree | 26c6510562eb32af7c3b5d463dece62075429952 | |
parent | 85f41579db58385cf98b673f4f4e23af3629d6cd (diff) | |
download | sos-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.py | 4 |
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. |