diff options
-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. |