diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-10 18:28:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 18:28:41 +0100 |
commit | 9e3586eb17cb7546ec9ab81998727aef0de70b03 (patch) | |
tree | db74f56b4b5e98445accb66472ead381a324b5c8 /op-mode-definitions | |
parent | 085a15059755cd4724adfc8ffb64f35760c07e0f (diff) | |
parent | 62f10e0ec8075634e1515d6cecc822d87053bccb (diff) | |
download | vyos-1x-9e3586eb17cb7546ec9ab81998727aef0de70b03.tar.gz vyos-1x-9e3586eb17cb7546ec9ab81998727aef0de70b03.zip |
Merge pull request #2784 from nicolas-fort/T5915
T5915: firewall: re-add opmode command for zone based firewall
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/firewall.xml.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/op-mode-definitions/firewall.xml.in b/op-mode-definitions/firewall.xml.in index 4a7ffbb66..a4a987aa6 100644 --- a/op-mode-definitions/firewall.xml.in +++ b/op-mode-definitions/firewall.xml.in @@ -396,6 +396,23 @@ </properties> <command>sudo ${vyos_op_scripts_dir}/firewall.py --action show_summary</command> </leafNode> + <node name="zone-policy"> + <properties> + <help>Show zone policy information</help> + </properties> + <children> + <tagNode name="zone"> + <properties> + <help>Show summary of zone policy for a specific zone</help> + <completionHelp> + <path>firewall zone</path> + </completionHelp> + </properties> + <command>sudo ${vyos_op_scripts_dir}/zone.py show --zone $5</command> + </tagNode> + </children> + <command>sudo ${vyos_op_scripts_dir}/zone.py show</command> + </node> </children> <command>sudo ${vyos_op_scripts_dir}/firewall.py --action show_all</command> </node> |