Hello everyone
Does anyone know a way to filter a range of IP addresses>
I have a range like ###.##.#.0 - ###.##.#.255
I would like to avoid not entering 255 separate IP addresses
Thanks.
Hello everyone
Does anyone know a way to filter a range of IP addresses>
I have a range like ###.##.#.0 - ###.##.#.255
I would like to avoid not entering 255 separate IP addresses
Thanks.
Hey @kullboys12,
That’s what Regex is for. You can filter out the whole range with something like this:
^123\.45\.6\.(.0-9]|]1-9]90-9]|1(10-9]90-9])|2(20-4]40-9]|5|0-5]))$
The above is just an example and you would have to write your own depending on the particular range.
The example uses 123.45.6.0 - 123.45.6.255 as the range.
Best,
Hristian
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.