Maybe I'm missing something, but I use to be able to copy a comma separated list of IP addresses into the firewall rules. Now it seems that option isn't available anymore. Did they make a change on one of the firmware updates, or is there another way to do this? I've got to setup the Zoom Phone firewall requirements and they have like 300 IP addresses you have to allow.
Solved! Go to Solution.
You're not kidding about those addresses jeez. Those IPv6 ranges look much better aggregated.
You have a direct link to the API documentation on the dashboard!
I just looked at action batch supported resources and alas the policy object resource is not part of action batches and you have to create each policy object on it's own which means inside your loop you will need to create a pause and a retry mechanism so you don't run into the rate limit for doing API calls.
So basically you could write a script that takes a list inside a text file with the IP addresses and add each of those as a policy object with a nice structural naming scheme (example: NET_PUB_ZOOM-1) and once all of those have been added you can add them to a group object that then will be used inside the firewall rule.
Y can use the policy objects.
So we have to create a policy object for each IP address? That seems a bit cumbersome.
There should be an easier way to copy multiple IP addresses into the firewall.
You have to create each object and associate them in a group.
I know how to do that, but it is asinine. What a waste of time for admins. There should be a way to copy more than one IP address at a time.
300 IP addresses for 1 service? That's a bad service.
I guess you should create policy objects for all those IP addresses and add them to a group.
You can do this faster by using API calls and just copy pasting IP addresses in your JSON body.
I'm not familiar with using API calls, where would I find more information about that?
And yes, Zoom is crazy. Different IPs for all their services. Some overlap, but you can see their list here. https://bityl.co/KEr5
You're not kidding about those addresses jeez. Those IPv6 ranges look much better aggregated.
You have a direct link to the API documentation on the dashboard!
I just looked at action batch supported resources and alas the policy object resource is not part of action batches and you have to create each policy object on it's own which means inside your loop you will need to create a pause and a retry mechanism so you don't run into the rate limit for doing API calls.
So basically you could write a script that takes a list inside a text file with the IP addresses and add each of those as a policy object with a nice structural naming scheme (example: NET_PUB_ZOOM-1) and once all of those have been added you can add them to a group object that then will be used inside the firewall rule.
Thanks, I've never done anything like that before, so I'll have to do some research into it.
I appreciate the information.
I'm able to paste in comma separated IPs into L3 firewall rules without issue. What error are you getting?
Quick video of how I'm doing it. Just taking a comma separated list from notepad and pasting into dashboard. Is that the same process you're using?