A lightweight PanOS (Palo Alto Networks) Firewall Management utility.
Project description
EZPanOS
lightweight PAN-OS utility library focused on practical operational tasks.
Why ezpanos exists
ezpanos is not a replacement for Palo Alto Networks’ official SDKs.
It grew out of working directly with PAN-OS automation and seeing how often engineers still end up dealing with hardcoded XPath, XML-heavy responses, and task-specific parsing logic.
ezpanos exists to make that experience more practical.
The PAN-OS ecosystem exposes strong configuration and object-management primitives, but real-world operational automatiosn require lower-level PanOS command execution and response parsing-- making operations requiring application logic more intuitive to build.
Right now, the CLI and execution interfaces return JSON. Higher-order abstractions on objects introduce maintenance overhead. This is more of an execution and translation layer for higher-order automations and projects.
The goal is to make operational automation easier to read and build.
Installation
pip install ezpanos
Quick Start
from ezpanos import EzPanOS
endpoint = "10.0.0.1"
fw = EzPanOS(endpoint=endpoint, username="admin")
print(fw.execute("show system info"))
For slower systems/commands, raise the default API timeout:
fw = EzPanOS(endpoint=endpoint, username="admin", request_timeout_default=90)
If password is omitted, you are securely prompted. Credentials entered once can be reused in-memory for subsequent connections in the same run.
Credential precedence is deterministic: explicit username/password arguments are used first, then config profile values, then cache fallback for missing values only.
Config Profiles
You can use a config.json file for endpoint/profile organization and optional usernames/passwords.
Conceptually, an estate is the firewalls you intend to manage. Because the utility works on many PanOS Configuration types: Panorama, Firewall, or Log Collector: each can be assimilated into this framework.
Example config.json:
{
"profiles": {
"estate": {
"username": "svc_firewall",
"endpoints": [
{"endpoint": "firewall-1.inside.example.com"},
{"endpoint": "firewall-2.inside.example.com"}
]
}
}
}
Build an estate object:
from ezpanos.estate import Estate
estate = Estate(
config="config.json",
profile="estate",
)
for device in estate.devices:
print(device.endpoint, device.estate_role)
estate is a concrete ezpanos.Estate instance that directly owns a list of EzPanOS devices.
You can also pass a parsed config dictionary directly:
from ezpanos.estate import Estate
config = {
"profiles": {
"production": {
"username": "svc_firewall",
"endpoints": [
{"endpoint": "firewall-1.inside.example.com"},
{"endpoint": "firewall-2.inside.example.com"}
]
}
}
}
estate = Estate(
config=config,
profile="production",
)
Note that the profile value is configurable if you intend to logically separate the management of different such estates. This is useful for environments with multiple Panorama instances.
If passwords are not present in config, you will be prompted and values are reused from in-memory cache where possible.
To apply a command to a Estate:
from ezpanos.estate import Estate
estate = Estate(
config="config.json",
profile="estate",
)
# Example Software upgrade/installation workflow:
# will make all firewalls request a system update
estate.execute_all("request system software check")
# will download a specific version of PanOS
estate.execute_all("request system software download version <version>")
# will install a specific version of PanOS
estate.execute_all("request system software install version <version>")
# will reboot firewalls
estate.execute_all("request restart system")
Rule Management
from ezpanos import EzPanOS
fw = EzPanOS(endpoint="10.0.0.1", username="admin")
result = fw.create_security_rule(
rule_name="example-rule",
from_zones=["trust"],
to_zones=["untrust"],
sources=["any"],
destinations=["any"],
applications=["web-browsing"],
services=["application-default"],
action="allow",
)
print(result)
Delete rule and commit:
delete_result = fw.delete_security_rule("example-rule", ignore_missing=True)
print(delete_result)
commit_result = fw.commit(wait_for_job=True)
print(commit_result)
Job sensitive commands
Some commands like software download/install as well as standard commit jobs execute beyond the xml command success.
To monitor the job id of an executed command:
response = fw.execute("request sustem software download 11.1.6-h3")
job_id = fw.extract_job_id(response)
# Or likewise:
version = "10.1.1"
response = fw.execute(f"request sustem software download version: {version}")
job_id = fw.extract_job_id(response)
This job can then be monitored with
response = fw.execute(f"show jobs id {job_id}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ezpanos-1.0.4.tar.gz.
File metadata
- Download URL: ezpanos-1.0.4.tar.gz
- Upload date:
- Size: 42.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27e8d560a48acded68dda04f3550d0b3d0deb9bd3a070df03d0eba69b34b5d03
|
|
| MD5 |
c46fecbb309affa2e2b3fbf5cec294ab
|
|
| BLAKE2b-256 |
46d9f70fc569adae6c71f7d767d3cb5c8a47d7b7b5c5c896f55b1f9608641423
|
File details
Details for the file ezpanos-1.0.4-py3-none-any.whl.
File metadata
- Download URL: ezpanos-1.0.4-py3-none-any.whl
- Upload date:
- Size: 39.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3adeba1efa86bc0b6aafeb025a2c68d35ee0abbebc4992df5ea64b71821d70d6
|
|
| MD5 |
7a7b956e1421c0b43ea7d0b223194db5
|
|
| BLAKE2b-256 |
0b63f03b83ed276fdb949ce6963e44f7a4411b624214f0dcc01fdeb1ca4cfd28
|