Hi!
When i write this:
/ip proxy access find where comment!=“VALUE”
Then don’t find any entries. This is sees in version RoS >=6.3. This is bug? Or how searching entries on comment?
The command is working, but you have to use some other commands to work with the results.
For example, in the console, you can return the items found (not very useful, but shows you the command is working):
:put [/ip proxy access find where comment!=“VALUE”]You can loop through these items, and do something with each one:
:foreach i in=[/ip proxy access find where comment!=“VALUE”] do={
:local var [/ip proxy access get $i comment]
:put $var
}And there are other things you can do with the results. What are you trying to do?
Thnx! Your comment has helped me.