Asset Search - IP address Like

Hi,

I need some help. I’m working running a search for every device on the console that’s IP address ends in 1. so like 10.200.98.1 or 10.210.45.1 but LIKE query isn’t taking my regex statement.

I tried using [0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[1]$ but it keeps says “No new data can be retrieved. The session may have expired. Please log on again.” in the results field.

Anyone else beeen successful using regex for this type of search?

Thanks in advanced
Michael

Try this

\^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.1\$

1 Like

Thanks did it. Thanks a bunch Troy, appreciate it.