- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
Enhanced Security Measures in Place: To ensure a safer experience, we’ve implemented additional, temporary security measures for all users.
07-11-2014 06:55 AM
Hi all,
I am trying to use the API to get a list of unused and another of used rules. Via the API I only get the following error
<response status="error"><msg><line>An error occured. See dagger.log for information.</line></msg></response>
I have also tried with the following
I then get a list of all policies. This does not change even if I change from used to unused, or from security to nat or pbf.
Does anyone know how to get an api command that will simply list the unused security rules as on e would get from a normal command line query?
Hope so,
thanks
Stefan
07-13-2014 08:00 AM
You need send the following over the API,
<show><running><rule-use><vsys>vsys1</vsys><type>unused</type><rule-base>security</rule-base></rule-use></running></show>
The resultant URL would look look like this,
07-11-2014 02:25 PM
Have you seen the option on the GUI?
Policy tab and on the bottom of the screen is the check box to highlight unused policies.
07-13-2014 08:00 AM
You need send the following over the API,
<show><running><rule-use><vsys>vsys1</vsys><type>unused</type><rule-base>security</rule-base></rule-use></running></show>
The resultant URL would look look like this,
07-16-2014 10:51 AM
07-16-2014 04:32 PM
Thanks everyone for the responses. All of them works
04-09-2019 11:41 AM
I wanted to provide an example if using Panorama.
This is a snippet from Postman where i have variables for Panorama and the associated api key {{prod-panorama}} and whatever device-group I want to review {{device-group}}. To retrieve pre-rules with no hits:
04-12-2021 12:38 AM
Hi thank you for sharing the API for using panorama, one more question if i may
Do you know if there is any API using Panorama that i can get all used rules with timestamp of last used.
from the API above i can get only the timestamp of last modify and timestamp of creation.
@jasonrakers your help will be much appreciated
05-12-2021 09:17 AM
Hi @Serhan,
At Panorama level, this command will get stats for all rules at summary level:
https://{{host}}/api?key={{key}}&type=op&cmd=<show><rule-hit-count><device-group><entry name='{{device-group-name}}'><pre-rulebase><entry name='security'><rules><all/></rules></entry></pre-rulebase></entry></device-group></rule-hit-count></show>
If you use a similar command for a specific rule, you can detailed stats including last-hit-timestamp:
https://{{host}}/api?key={{key}}&type=op&cmd=<show><rule-hit-count><device-group><entry name='{{device-group-name}}'><pre-rulebase><entry name='security'><rules><rule-name><entry name='{{rule-name}}'/></rule-name></rules></entry></pre-rulebase></entry></device-group></rule-hit-count></show>
Hope that helps.
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!