Hi @TigeRRR , In this case, you want to (1) retrieve the NAT policy from multiple firewalls, (2) filter out the static entries, and (3) build a table of the real and NATed IP addresses. If you want to automate this process, you will need to program or script something, e.g. Python, Ansible, etc. Regardless of the tool you use, the API interface is much easier to program that the CLI. In addition, the data is returned in database format (XML or JSON) so that you do not have to screen scrape and tabulate. In response to your questions: You pass XML to the API interface instead of CLI. You login with an API key instead of username/password. The API interface does not allow complex RegEx. That is done with your automation tool. So, configuring an automation tool and learning the API will have an initial steep learning curve, but once you build that foundation you could perform complex, repetitive tasks with ease. Sorry that I do not have a quick solution. It sounded like you may already be using an automation tool. Thanks, Tom
... View more