This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Generic IP address list input | |
## Based on a script written by Sam Norris, ChangeIP.com 2008 | |
## Edited by ChrisG661, 2021 | |
## Permissions: ftp, read, write, policy, test | |
# Check if file is not empty | |
:if ([/file get [/file find name=$filename] size] > 0) do={ | |
# Remove existing addresses from the current address list | |
# Disabled as script will use same list for different sourcefiles | |
#/ip firewall address-list remove [/ip firewall address-list find list=$listname] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Made by ChrisG661, 2021 | |
## github.com/ChrisG661 | |
# Address list name | |
:local listname "zoom" | |
# Zoom IP range URLs | |
:local sourceUrl {"https://assets.zoom.us/docs/ipranges/Zoom.txt"; \ | |
"https://assets.zoom.us/docs/ipranges/ZoomMeetings.txt"; \ | |
"https://assets.zoom.us/docs/ipranges/ZoomCRC.txt"; \ | |
"https://assets.zoom.us/docs/ipranges/ZoomPhone.txt"} |