From 95b812efb10fe9a6e36291cf827bc445cb0ab6ce Mon Sep 17 00:00:00 2001 From: Calvin Remsburg Date: Fri, 26 Jan 2024 11:30:00 -0600 Subject: [PATCH] Update CLI commands for firewall and Panorama targeting --- docs/user-guide/python/execution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/python/execution.md b/docs/user-guide/python/execution.md index ce43ac2..a50adbb 100644 --- a/docs/user-guide/python/execution.md +++ b/docs/user-guide/python/execution.md @@ -61,7 +61,7 @@ Alternatively, you can pass these details as command-line arguments. This method #### Direct Firewall Targeting ```bash -$ pan-os-upgrade --hostname 192.168.255.1 --username admin --password secret --version 10.1.0 +$ pan-os-upgrade firewall --hostname 192.168.255.1 --username admin --password secret --version 10.1.0 INFO - ✅ Connection to firewall established ... shortened output for brevity ... ``` @@ -71,7 +71,7 @@ INFO - ✅ Connection to firewall established When using Panorama as a proxy, the `--filter` argument is necessary to specify the criteria for selecting the managed firewalls to upgrade. ```bash -$ pan-os-upgrade --hostname panorama.cdot.io --filter 'hostname=houston' --username admin --password secret --version 10.1.0 +$ pan-os-upgrade panorama --hostname panorama.cdot.io --filter 'hostname=houston' --username admin --password secret --version 10.1.0 ✅ Connection to Panorama established. Firewall connections will be proxied! ... shortened output for brevity ... ```