Skip to main content

Python API client for Cisco Firepower Management Center (FMC)

Project description

python3 pypi license status published

FireREST

FireREST is a python library to interface with Cisco Firepower Management Center REST API. The goal of FireREST is to provide a simple SDK to programmatically interact with FMC.

Features

  • Authentication and automatic session refresh / re-authentication
  • Rate-limit detection and automatic backoff and retry behavior
  • Automatic squashing of paginated api payloads
  • Sanitization of api payloads for create and update operations (automatically remove unsupported elements like links, metadata from payload)
  • Detailed logging of api requests and responses
  • API specific error handling using various custom exceptions for typical errors (e.g. ResourceAlreadyExists, UnprocessAbleEntityError, ...)
  • Support for resource lookup by name instead of uuid for all CRUD operations

Requirements

  • Python >= 3.10

Quickstart

Installation

> pip install fireREST

Import api client

from fireREST import FMC

Authentication (self-hosted)

FireREST uses basic authentication. In case your authentication token times out, the api client will automatically refresh the session and retry a failed operation. If all 3 refresh tokens have been used up the connection object will try to re-authenticate again automatically.

fmc = FMC(hostname='fmc.example.com', username='firerest', password='Cisco123', domain='Global')

NOTE: By default domain is set to Global

Authentication (cdFMC/CDO)

fireREST uses Bearer token to authenticate. This token can be obtained from CDO cloud portal.

fmc = FMC(hostname='example.app.eu.cdo.cisco.com', password='<CDO Token>', cdo=True)

CRUD Operations

Objects

Create network object
net_obj = {
    'name': 'NetObjViaAPI',
    'value': '198.18.1.0/24',
}

response = fmc.object.network.create(data=net_obj)

NOTE: in case a resource supports the bulk option FireREST will automatically perform a bulk operation if the data provided is of type list

Get all network objects
net_objects = fmc.object.network.get()
Get specific network object
net_objects = fmc.object.network.get(name='NetObjViaAPI')

NOTE: You can access a resource either by name or uuid. If the resource supports a filtering by name FireREST will utilize the filter option, in case a Resource does not support filter params it will iterate through all resources to find a match

Update network object
net_obj = fmc.object.network.get(name='NetObjViaAPI')
net_obj['name'] = 'RenamedNetObjViaAPI'
response = fmc.object.network.update(data=net_obj)

NOTE: FireREST automatically extracts the id field of the provided data dict to update the correct resource.

Delete network object
response = fmc.object.network.delete(name='NetObjViaAPI')

Supported operations

Since FireREST does not try to provide a python object model nearly all api calls up to version 7.4.0 are available which includes but is not limited to the following CRUD operations:

├── analysis
│   ├── activesessions
│   └── useractivity
├── assignment
│   └── policyassignment
├── audit
│   ├── auditrecord
│   └── configchanges
├── backup
│   ├── downloadbackup
│   └── file
├── changemanagement
│   └── ticket
│       ├── previewchanges
│       └── validationresults
├── chassis
│   ├── appinfo
│   ├── chassisetherchannelinterface
│   ├── chassisinterface
│   ├── chassisinterfaceevent
│   ├── chassissnmpsettings
│   ├── chassissubinterface
│   ├── faultsummary
│   ├── instancesummary
│   ├── interface
│   ├── interfacesummary
│   ├── inventorysummary
│   ├── logicaldevice
│   ├── networkmodule
│   ├── operational
│   └── physicalinterface
├── deployment
│   ├── deployabledevice
│   │   ├── deployment
│   │   └── pendingchanges
│   ├── deploymentrequest
│   ├── jobhistory
│   │   ├── downloadreport
│   │   └── emailreport
│   ├── pendingchangesrequest
│   └── rollbackrequest
├── device
│   ├── devicerecord
│   │   ├── bridgegroupinterface
│   │   ├── dhcp
│   │   │   ├── ddnssettings
│   │   │   ├── dhcprelaysettings
│   │   │   └── dhcpserver
│   │   ├── etherchannelinterface
│   │   ├── fpinterfacestatistics
│   │   ├── fplogicalinterface
│   │   ├── fpphysicalinterface
│   │   ├── inlineset
│   │   ├── interfaceevent
│   │   ├── loopbackinterface
│   │   ├── managementconvergencemode
│   │   ├── operational
│   │   │   ├── command
│   │   │   ├── metric
│   │   │   └── virtualaccessinterface
│   │   ├── physicalinterface
│   │   ├── redundantinterface
│   │   ├── routing
│   │   │   ├── bfdpolicy
│   │   │   ├── bgp
│   │   │   ├── bgpgeneralsettings
│   │   │   ├── eigrproute
│   │   │   ├── ipv4staticroute
│   │   │   ├── ipv6staticroute
│   │   │   ├── ospfinterface
│   │   │   ├── ospfv2route
│   │   │   ├── ospfv3interface
│   │   │   ├── policybasedroute
│   │   │   ├── staticroute
│   │   │   └── virtualrouter
│   │   │       ├── bfdpolicy
│   │   │       ├── bgp
│   │   │       ├── eigrproute
│   │   │       ├── ipv4staticroute
│   │   │       ├── ipv6staticroute
│   │   │       ├── ospfinterface
│   │   │       ├── ospfv2route
│   │   │       ├── ospfv3interface
│   │   │       ├── ospfv3route
│   │   │       └── policybasedroute
│   │   ├── subinterface
│   │   ├── virtualswitch
│   │   ├── virtualtunnelinterface
│   │   └── vlaninterface
│   └── devicesettings
├── devicecluster
│   └── ftddevicecluster
│       ├── clusterhealthmonitorsettings
│       └── operational
├── devicegroup
│   └── devicegrouprecord
├── devicehapair
│   └── ftddevicehapair
│       ├── failoverinterfacemacaddressconfig
│       └── monitoredinterface
├── health
│   ├── alert
│   ├── csdac
│   ├── metric
│   ├── pathmonitoredinterface
│   ├── ravpngateway
│   ├── ravpnsession
│   ├── tunnelstatus
│   │   └── tunneldetails
│   └── tunnelsummary
├── integration
│   ├── cdfmcsnapshot
│   ├── cloudeventsconfig
│   ├── cloudregion
│   ├── ebssnapshot
│   ├── externallookup
│   ├── externalstorage
│   ├── fmchastatus
│   ├── securexconfig
│   ├── testumbrellaconnection
│   ├── umbrella
│   │   ├── datacenter
│   │   └── tunneldeployment
│   │       └── transcript
│   └── umbrellaconnection
├── intelligence
│   ├── taxiiconfig
│   │   ├── collection
│   │   └── discoveryinfo
│   └── tid
│       ├── element
│       ├── incident
│       ├── indicator
│       ├── observable
│       ├── setting
│       └── source
├── job
│   └── taskstatus
├── license
│   ├── devicelicense
│   └── smartlicense
├── netmap
│   ├── host
│   └── vulnerability
├── object
│   ├── anyconnectcustomattribute
│   │   └── override
│   ├── anyconnectexternalbrowserpackage
│   ├── anyconnectpackage
│   ├── anyconnectprofile
│   ├── anyprotocolportobject
│   ├── application
│   ├── applicationcategory
│   ├── applicationfilter
│   ├── applicationproductivities
│   ├── applicationrisk
│   ├── applicationtag
│   ├── applicationtype
│   ├── aspathlist
│   ├── azureadreaml
│   ├── azureadstatus
│   ├── bfdtemplate
│   ├── certenrollment
│   ├── certificatemap
│   ├── ciphersuitelist
│   ├── communitylist
│   ├── continent
│   ├── country
│   ├── customsiiplist
│   ├── customsiiplistdownload
│   ├── customsiurllist
│   ├── customsiurllistdownload
│   ├── dhcpipv6pool
│   ├── distinguishedname
│   ├── distinguishednamegroup
│   ├── dnsservergroup
│   │   └── override
│   ├── dynamicobject
│   │   └── mapping
│   ├── endpointdevicetype
│   ├── expandedcommunitylist
│   ├── extendedaccesslist
│   ├── externalcacertificate
│   ├── externalcacertificategroup
│   ├── externalcertificate
│   ├── externalcertificategroup
│   ├── filecategory
│   ├── filetype
│   ├── fqdn
│   │   └── override
│   ├── geolocation
│   ├── globaltimezone
│   ├── grouppolicy
│   ├── host
│   │   └── override
│   ├── hostscanpackage
│   ├── icmpv4object
│   │   └── override
│   ├── icmpv6object
│   │   └── override
│   ├── ikev1ipsecproposal
│   ├── ikev1policy
│   ├── ikev2ipsecproposal
│   ├── ikev2policy
│   ├── interface
│   ├── interfacegroup
│   ├── internalca
│   ├── internalcertgroup
│   ├── internalcertificate
│   ├── intrusionrule
│   ├── intrusionrulegroup
│   ├── ipv4addresspool
│   │   └── override
│   ├── ipv4prefixlist
│   ├── ipv6addresspool
│   │   └── override
│   ├── ipv6prefixlist
│   ├── isesecuritygrouptag
│   ├── keychain
│   │   └── override
│   ├── network
│   │   └── override
│   ├── networkaddress
│   ├── networkaddressoverride
│   ├── networkgroup
│   │   └── override
│   ├── ntpserver
│   ├── operational
│   │   ├── findoverlaps
│   │   └── usage
│   ├── policylist
│   ├── port
│   ├── portobjectgroup
│   │   └── override
│   ├── protocolportobject
│   │   └── override
│   ├── radiusservergroup
│   ├── range
│   │   └── override
│   ├── realm
│   ├── realmuser
│   ├── realmusergroup
│   ├── resourceprofile
│   ├── routemap
│   ├── secureclientcustomization
│   ├── securitygrouptag
│   ├── securityzone
│   ├── sidnsfeed
│   ├── sidnslist
│   ├── sinetworkfeed
│   ├── sinetworklist
│   ├── sinkhole
│   ├── siurlfeed
│   ├── siurllist
│   ├── slamonitor
│   ├── ssoserver
│   │   └── override
│   ├── standardaccesslist
│   ├── standardcommunitylist
│   ├── testazureadream
│   ├── timerange
│   ├── timezone
│   │   └── override
│   ├── tunneltag
│   ├── url
│   │   └── override
│   ├── urlcategory
│   ├── urlgroup
│   │   └── override
│   ├── variableset
│   ├── vlangrouptag
│   │   └── override
│   └── vlantag
│       └── override
├── policy
│   ├── accesspolicy
│   │   ├── accessrule
│   │   ├── category
│   │   ├── defaultaction
│   │   ├── inheritancesettings
│   │   ├── loggingsettings
│   │   ├── operational
│   │   │   └── hitcounts
│   │   └── securityintelligencepolicy
│   ├── chassisplatformsettingspolicy
│   │   ├── accesslistsettings
│   │   ├── dnssettings
│   │   ├── sshclientsettings
│   │   ├── sshserversettings
│   │   ├── syslogsettings
│   │   ├── timesynchronizationsettings
│   │   └── timezonesettings
│   ├── decryptionpolicy
│   │   └── decryptionpolicyrule
│   ├── dnspolicy
│   │   ├── allowdnsrule
│   │   └── blockdnsrule
│   ├── dynamicaccesspolicy
│   ├── filepolicy
│   │   └── filerule
│   ├── flexconfigpolicy
│   ├── ftdnatpolicy
│   │   ├── autonatrule
│   │   ├── manualnatrule
│   │   └── natrule
│   ├── ftdplatformsettingspolicy
│   │   ├── httpaccesssettings
│   │   ├── netflowpolicies
│   │   └── snmpsettings
│   ├── ftds2svpn
│   │   ├── advancedsettings
│   │   ├── endpoint
│   │   ├── ikesettings
│   │   ├── ipseccryptomap
│   │   ├── ipsecsettings
│   │   └── s2svpnsummary
│   ├── healthpolicy
│   ├── identitypolicy
│   ├── intrusionpolicy
│   │   ├── intrusionrule
│   │   └── intrusionrulegroup
│   ├── natexemptrule
│   ├── networkanalysispolicy
│   │   ├── inspectorconfig
│   │   └── inspectoroverrideconfig
│   ├── policylock
│   ├── prefilterpolicy
│   │   ├── defaultaction
│   │   ├── operational
│   │   │   └── hitcounts
│   │   └── prefilterrule
│   ├── ravpn
│   │   ├── addressassignmentsettings
│   │   ├── certificatemapsettings
│   │   ├── connectionprofile
│   │   ├── ipsecadvancedsettings
│   │   ├── ldapattributemap
│   │   ├── loadbalancesettings
│   │   └── secureclientcustomizationsettings
│   ├── snmpalert
│   ├── syslogalert
│   ├── umbrelladnspolicy
│   │   └── umbrelladnsrule
│   ├── vpntunnelstatus
│   └── zerotrustpolicy
│       ├── application
│       └── applicationgroup
├── system
│   └── info
│       ├── domain
│       └── serverversion
├── systemconfiguration
│   ├── changemanagementconfig
│   └── remotemanagementaccess
├── troubleshoot
│   ├── device
│   ├── packettracer
│   │   └── file
│   └── task
├── update
│   └── upgradepackage
│       └── applicabledevice
└── user
    ├── authrole
    ├── duoconfig
    ├── ssoconfig
    └── users

Troubleshooting

UnprocessableEntityError

You might see an UnprocessableEntityError exception when you try to execute CREATEor UPDATE operations. Depending on the API endpoint the error message from FMC might not contain enough information to pinpoint what is causing the issue. In this case I would recommend using pigtail on FMC to get more detailed information.

Example

In this example we are trying to create an object override, but the field value is invalid. The subnet mask chosen is not correct, which will cause the FMC API to respond with an UnprocessAbleEntity error.

data = {
    "overrides": {
        "parent": {
            "id": "00505699-76B7-0ed3-0000-077309525737"
        },
        "target": {
            "id": "0ff8161e-096e-11eb-8ec0-cb721f246e60",
            "type": "Device"
        }
    },
    "value": "198.18.201.0/241",
    "name": "NetObjWithOverrides",
    "id": "00505699-76B7-0ed3-0000-077309525737"
}
fmc.object.network.update(data=data)

On FMC we can use the pigtail utility to tail the logfile on the Tomcat webserver hosting the REST API. Using this method we can monitor the APIs response and get some additional information on the error

> expert
admin@fmc:/Volume/home/admin# sudo su -
root@fmc:/Volume/home/admin# pigtail TCAT

Here we see that a Java exception has been thrown, indicating that the request failed due an invalid ip address being passed

TCAT: 02-02 15:36:33 INFO: 172.21.100.145	-	-	443	PUT	/api/fmc_config/v1/domain/b76ff587-9224-65c7-d2af-000000000000/object/networks/00505699-76B7-0ed3-0000-077309525737	-	400	-	301	169	https://fmc.example.com	FireREST/1.0.0	-
TCAT: 02-02 15:34:33 [ajp-nio-127.0.0.1-9009-exec-1] ERROR com.cisco.api.external.rest.common.resource.ContainerServerResource - **Invalid IP Address**
TCAT: 02-02 15:34:33 APIException:Invalid IP Address

Authors

Oliver Kaiser (oliver.kaiser@outlook.com)

Maintainers

Rafal Chrabaszcz (rchrabas@cisco.com)

License

GNU General Public License v3.0 or later.

See LICENSE for the full text.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

firerest-1.3.0.tar.gz (184.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

firerest-1.3.0-py3-none-any.whl (302.7 kB view details)

Uploaded Python 3

File details

Details for the file firerest-1.3.0.tar.gz.

File metadata

  • Download URL: firerest-1.3.0.tar.gz
  • Upload date:
  • Size: 184.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for firerest-1.3.0.tar.gz
Algorithm Hash digest
SHA256 ec2241f30f55821572e128dad9efcd884709cee18daea2e604c0f55faa2ee4cc
MD5 c94a0f6d7c74c68ad07172cde206edd3
BLAKE2b-256 122c434b64cd84898c0da7a4f80b30adb173f1cbce859551bbfb57fb428b3aa8

See more details on using hashes here.

File details

Details for the file firerest-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: firerest-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 302.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for firerest-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d069715cc6edbf41f2f13c97c29d5f2d0f687dd42d2d3309a616fc74406cb6c5
MD5 d6de77b0f4a32c1ce9d27543b5610708
BLAKE2b-256 8ef58aabc1450c9d59a03c8929bd75023f20424a07ab718f352dc7b56600f311

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page