summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2023-09-10 11:39:51 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2023-09-10 11:39:51 +0000
commit9daac1632df96b6d2089244e3c7a7b42ae682eb9 (patch)
treeabf63b0fc6addbe4d96afd7d5e368f4aed9719b7 /src
parent3f4c320cbcd3f7a6e49249e8fbf5596326162b97 (diff)
downloadvyos-1x-9daac1632df96b6d2089244e3c7a7b42ae682eb9.tar.gz
vyos-1x-9daac1632df96b6d2089244e3c7a7b42ae682eb9.zip
T5564: Fix show firewall group and show firewall summary
The `rule` key could be not exists in the entry of the dictionary for examppe `{'default_action': 'drop'}` Fix it
Diffstat (limited to 'src')
-rwxr-xr-xsrc/op_mode/firewall.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/op_mode/firewall.py b/src/op_mode/firewall.py
index 23b4b8459..11cbd977d 100755
--- a/src/op_mode/firewall.py
+++ b/src/op_mode/firewall.py
@@ -300,6 +300,8 @@ def show_firewall_group(name=None):
for priority, priority_conf in firewall[item][name_type].items():
if priority not in firewall[item][name_type]:
continue
+ if 'rule' not in priority_conf:
+ continue
for rule_id, rule_conf in priority_conf['rule'].items():
source_group = dict_search_args(rule_conf, 'source', 'group', group_type)
dest_group = dict_search_args(rule_conf, 'destination', 'group', group_type)