Skip to main content
KerriS
New Member
May 15, 2018
Question

Show address objects via CLI

  • May 15, 2018
  • 2 replies
  • 38241 views

I need to find all objects that are named in the format "Host_x.x.x.*" where the first 3 octets are known, but would like the 4th octet to be a wildcard. This search could also be done just using a partial IP - x.x.x.*

 

Any assistance would be greatly appreciated.

2 replies

Iescudero
New Member
May 15, 2018

Hi there!

you can use this:

config firewall address

                  show | grep -f Host_x.x.x.

 

or you can try:

 

get firewall address | grep -f Host_x.x.x.

 

Hope it helps!

 

KerriS
KerriSAuthor
New Member
May 15, 2018

Thanks so much!