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 babe3466..7905fd14 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -55,7 +55,9 @@ class OpenVSwitch(Plugin): # Capture LACP details "ovs-appctl lacp/show", # Capture coverage stats" - "ovs-appctl coverage/show" + "ovs-appctl coverage/show", + # Capture cached routes + "ovs-appctl ovs/route/show" ]) # Gather additional output for each OVS bridge on the host. |