Lista de configuración de firewall y proxy de Google Drive de hosts y puertos para administradores de redes.
Del oficial Página de soporte de Google:
Este artículo está destinado a los administradores de la red.
Para que los usuarios de su red accedan a Google Drive y los editores de Google Docs, Sus reglas de firewall deben conectarse a los siguientes hosts y puertos. De lo contrario, Los usuarios pueden ser bloqueados o denegados acceso desde estos servicios.
Para los siguientes anfitriones, [N] significa cualquier dígito decimal y* significa cualquier cadena que no contenga un período.
- www.google.com:443/HTTPS
- cuentas.google.com:443/HTTPS
- googledrive.com:443/HTTPS
- drive.google.com:443/HTTPS
- *.drive.google.com:443/HTTPS
- docs.google.com:443/HTTPS
- *.docs.google.com:443/HTTPS
- *.c.docs.google.com:443/HTTPS
- sheets.google.com:443/HTTPS
- Slides.google.com:443/HTTPS
- talk.google.com:5222/XMPP (Necesito solo para copia de seguridad y sincronización)
- Takeout.google.com:443/HTTPS
- gg.google.com:443/HTTPS
- script.google.com:443/HTTPS
- ssl.google-analytics.com:443/HTTPS
- video.google.com:443/HTTPS
- s.ytimg.com:443/HTTPS
- apis.google.com:443/HTTPS
- *.clientela[N].Google.com:443/HTTPS
- *.Googleapis.com:443/HTTPS
- *.GoogleUsercontent.com:443/HTTPS
- *.gstatic.com:443/HTTPS
- LH[N].Google.com:443/HTTPS
- [N].Client-channel.google.com:443/HTTPS
- clientela[N].Google.com:443/HTTPS
- GV1.com:443/HTTPS
Cómo se ve en Wpad.dat
if (shExpMatch(host, "www.google.com")) return "DIRECT";
if (shExpMatch(host, "accounts.google.com")) return "DIRECT";
if (shExpMatch(host, "googledrive.com")) return "DIRECT";
if (shExpMatch(host, "drive.google.com")) return "DIRECT";
if (shExpMatch(url, "*.drive.google.com")) return "DIRECT";
if (shExpMatch(host, "docs.google.com")) return "DIRECT";
if (shExpMatch(url, "*.docs.google.com*")) return "DIRECT";
if (shExpMatch(url, "*.c.docs.google.com*")) return "DIRECT";
if (shExpMatch(host, "sheets.google.com")) return "DIRECT";
if (shExpMatch(host, "slides.google.com")) return "DIRECT";
if (shExpMatch(host, "talk.google.com")) return "DIRECT";
if (shExpMatch(host, "takeout.google.com")) return "DIRECT";
if (shExpMatch(host, "gg.google.com")) return "DIRECT";
if (shExpMatch(host, "script.google.com")) return "DIRECT";
if (shExpMatch(host, "ssl.google-analytics.com")) return "DIRECT";
if (shExpMatch(host, "video.google.com")) return "DIRECT";
if (shExpMatch(host, "s.ytimg.com")) return "DIRECT";
if (shExpMatch(url, "apis.google.com*")) return "DIRECT";
if (shExpMatch(url, "*.clients[N].google.com*")) return "DIRECT";
if (shExpMatch(url, "*.googleapis.com*")) return "DIRECT";
if (shExpMatch(url, "*.googleusercontent.com*")) return "DIRECT";
if (shExpMatch(url, "*.gstatic.com*")) return "DIRECT";
if (shExpMatch(host, "lh[N].google.com")) return "DIRECT";
if (shExpMatch(host, "[N].client-channel.google.com")) return "DIRECT";
if (shExpMatch(host, "clients[N].google.com")) return "DIRECT";
if (shExpMatch(host, "mtalk.google.com")) return "DIRECT";
if (shExpMatch(host, "play.google.com")) return "DIRECT";