summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2023-09-10 11:39:51 +0000
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2023-09-11 19:34:28 +0000
commitb0a9782a4a611c375fb3313887a8144fdacbd18c (patch)
treec402c54ba4b126244b81f80130c843a3fcabdfdc /src
parent2103b5522d21970f0a48cb41351fdd8dbd349987 (diff)
downloadvyos-1x-b0a9782a4a611c375fb3313887a8144fdacbd18c.tar.gz
vyos-1x-b0a9782a4a611c375fb3313887a8144fdacbd18c.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 (cherry picked from commit 9daac1632df96b6d2089244e3c7a7b42ae682eb9)
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 581710b31..c5d5848c2 100755
--- a/src/op_mode/firewall.py
+++ b/src/op_mode/firewall.py
@@ -267,6 +267,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)