D
D
Dmitry Shumov2020-05-15 10:16:33
Network administration
Dmitry Shumov, 2020-05-15 10:16:33

Who knows the IP range of ZOOM servers?

Good afternoon, we are now setting up a new proxy server in the company, and we need to add ZOOM server addresses or IP range to proxy exceptions so that we can allow our users to use conferences and ZOOM features bypassing the proxy. Anyone can share? ZOOM support is silent for now :(

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
Ilya, 2020-05-15
@dshumov

Network Firewall or Proxy Server Settings for Zoom
First link in Google. Not that?

A
Andrey Barbolin, 2020-05-15
@dronmaxman

I found a script on the Internet that finds all the addresses belonging to the company.
bash ip_get zoom.us

#!/bin/bash

addr=`nslookup $1  | grep -A 3 Non-authoritative | grep Address: | awk '{print$2}'`
echo $addr

origin=`whois -h whois.radb.net $addr | grep origin | awk '{print$2}'`
echo $origin

origin_quare="whois -h whois.radb.net '!g$origin' | grep /"
echo $origin_quare;

echo "#$1"
addrpool=`whois -h whois.radb.net "!g$origin" | grep /`

for word in $addrpool; do
echo "$word"
done

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question