- 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-29-2018 11:26 PM
I am trying to view only security policies that do not have a description. I have found the following links but am unable to get the output i need. I need to show rules with no description and for all the operations i must define a valuen and all i am after is a NUL.
07-30-2018 01:05 AM
So far I don't know if this is possible in the WebUI. But with the XML config and a XPATH query this definately can be done.
07-30-2018 02:23 AM
This is not possible in the GUI, you need to do a 'positive match' search for values, but a policy without description does not have a matching XML entry to match, so you can't search for an 'empty' xpath either (unless you do a search for the surrounding attributs:)
eg. 'with' description
<action>allow</action> <description>General Internet Traffic</description> <log-setting>default</log-setting>
'without' description
<action>allow</action> <log-setting>default</log-setting>
a (dirty) workaround in the GUI is to search for (description neq 'null') (or any other single word that is not used as a description). The resulting filtered view will show you all rules except the ones without description, so you can see which ones are missing by the missing rule numbers
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!