Tinuva
The Magician
- Joined
- Feb 10, 2005
- Messages
- 12,475
Changing IP wont change google drive performance.Same issue on a 155.xxx address as a 102.xxx address. I suspect an arbitrary upload rate throttle is in place somewhere on Google's side for whatever reason.
You need to have googleapis.com resolve to a different cluster. One way to do that, is using different DNS servers.
I have a config in adguard home to do this:
Code:
[/googleapis.com/]8.20.247.20
[/googleapis.com/]8.26.56.26
What this does, all *.googleapis.com requests goes to the dns servers on 8.26.56.26 and 8.20.247.20
This causes my google drive traffic to use AMS instead of JNB.
Example time.
Local 1st:
Code:
~ % dig chromedriver.storage.googleapis.com +short @1.1.1.1
216.58.223.144
~ % mtr 216.58.223.144 --report-wide -c4
Start: 2023-01-27T12:21:15+0200
HOST: 909c4ace21ef.xxx.aaaaaaaaaa Loss% Snt Last Avg Best Wrst StDev
1.|-- router-vlan20.heaven.za.net 0.0% 4 0.8 1.7 0.5 4.9 2.2
2.|-- ujk1-cust.coolideas.co.za 0.0% 4 2.9 3.2 1.9 4.5 1.1
3.|-- um5g-cust.coolideas.co.za 0.0% 4 3.9 12.0 3.9 32.7 13.9
4.|-- c3h-backbone.coolideas.co.za 0.0% 4 1.7 5.0 1.7 14.4 6.3
5.|-- 100.98.0.3 0.0% 4 1.8 3.2 1.8 5.4 1.7
100.98.0.1
6.|-- 100.98.1.19 0.0% 4 19.9 23.4 18.7 28.4 4.8
100.98.1.1
100.98.1.2
7.|-- 100.99.1.250 0.0% 4 24.9 22.1 19.1 24.9 2.9
100.99.0.235
8.|-- 196-60-9-113.ixp.joburg 0.0% 4 21.3 23.2 20.2 30.7 5.1
9.|-- 172.253.65.181 0.0% 4 20.1 20.1 19.7 20.7 0.4
10.|-- 172.253.65.255 0.0% 4 19.8 19.9 18.8 21.0 0.9
11.|-- jnb02s01-in-f16.1e100.net 0.0% 4 18.4 18.7 18.0 20.0 0.9
Using the above dns:
Code:
~ % dig chromedriver.storage.googleapis.com +short @8.26.56.26
216.58.212.240
~ % mtr 216.58.212.240 --report-wide -c4
Start: 2023-01-27T12:22:29+0200
HOST: 909c4ace21ef.xxx.aaaaaaaaaa Loss% Snt Last Avg Best Wrst StDev
1.|-- router-vlan20.heaven.za.net 0.0% 4 0.8 1.2 0.5 3.1 1.2
2.|-- ujk1-cust.coolideas.co.za 0.0% 4 2.0 2.9 2.0 5.8 1.9
3.|-- um5g-cust.coolideas.co.za 75.0% 4 5.4 5.4 5.4 5.4 0.0
4.|-- c3h-backbone.coolideas.co.za 0.0% 4 1.8 6.3 1.7 19.9 9.1
5.|-- 100.98.0.3 0.0% 4 2.5 2.6 1.9 3.9 0.9
6.|-- 100.98.1.17 0.0% 4 20.1 19.2 17.6 20.1 1.1
100.98.1.3
100.98.1.1
7.|-- 100.99.0.235 0.0% 4 20.8 19.4 17.6 20.8 1.4
100.99.1.250
8.|-- 196-60-9-113.ixp.joburg 0.0% 4 19.3 20.8 18.6 25.0 2.9
9.|-- 74.125.245.209 0.0% 4 20.6 19.7 18.6 20.6 0.9
10.|-- 74.125.245.214 0.0% 4 18.9 19.3 18.8 20.4 0.7
11.|-- 209.85.250.190 0.0% 4 18.4 26.1 18.0 50.0 15.9
12.|-- 142.251.236.115 0.0% 4 172.7 173.0 172.3 174.1 0.8
13.|-- 108.170.246.161 0.0% 4 176.1 176.7 173.4 179.6 2.6
14.|-- 216.239.41.241 0.0% 4 173.6 176.5 173.1 183.1 4.6
15.|-- ams16s22-in-f16.1e100.net 0.0% 4 171.7 174.6 171.7 180.5 4.0
Bypassing the horrible JNB cluster. The performance in JNB sucks, sorry to say it.

