diff options
author | imarom <imarom@cisco.com> | 2016-04-14 19:41:54 +0300 |
---|---|---|
committer | imarom <imarom@cisco.com> | 2016-04-14 19:41:54 +0300 |
commit | 8decca771f657c0081953daed12b862568104b3b (patch) | |
tree | a443c839984423e9dd799cc0aecefeb904f5d934 /scripts | |
parent | 94ce0dcd7f93fe82e667f38d805f56d6d828f824 (diff) |
by default TUI shows all ports - can be switched to owned by pressing
'o'
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/automation/trex_control_plane/stl/console/trex_tui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/stl/console/trex_tui.py b/scripts/automation/trex_control_plane/stl/console/trex_tui.py index 331baec9..effcf55e 100644 --- a/scripts/automation/trex_control_plane/stl/console/trex_tui.py +++ b/scripts/automation/trex_control_plane/stl/console/trex_tui.py @@ -73,7 +73,7 @@ class TrexTUIDashBoard(TrexTUIPanel): self.key_actions['o'] = {'action': self.action_show_owned, 'legend': 'owned ports', 'show': True} self.key_actions['a'] = {'action': self.action_show_all, 'legend': 'all ports', 'show': True} - self.ports_filter = self.FILTER_ACQUIRED + self.ports_filter = self.FILTER_ALL def get_ports (self): |