How is your ISP doing with increased traffic due to the COVID-19?

  • Thread starter Thread starter JB701
  • Start date Start date
  • Replies Replies 616
  • Views Views 51,102
Like that, I also set up a wireguard server on DigitalOcean. It's treating me well. Yesterday there were some slowdowns at around 10 PM. I was afraid today I will not be even able to load Google, but so far, soo good. Near like before latency.

How is Singapore GCP treating you?
 
What’s wireguard?
 
Like that, I also set up a wireguard server on DigitalOcean. It's treating me well. Yesterday there were some slowdowns at around 10 PM. I was afraid today I will not be even able to load Google, but so far, soo good. Near like before latency.

How is Singapore GCP treating you?

But I get pathetic speeds from DO, else DO was the obvious choice. Are you able to download their speedtest files at full speed during the day? Or is the performance better to a VM than their speed test files? 🤔

GCP Singapore is pretty decent, I didn't do proper test during the day so not sure.

GCP doesn't support IPv6, so I've been trying to take advantage of the IPv6 speeds by having a wireguard tunnel over IPv6 but route IPv4 through it. ;) AWS Mumbai has IPv6 so was trying wireguard over it.

And it kind of works. but for higher speeds my Mi Router 3G is the bottle neck :LOL:




It says BSNL, but the traffic is going over AWS Mumbai. At those speeds, all 4 cores on the Mi Router 3G is maxed out. 😁
 
Last edited:
@varkey how is the latency from GCP to other servers? Last time I tried setting up a VPN on GCP Mumbai, the latency to other servers from GCP was like 300ms to Singapore, 250ms for Germany, etc.
 
@blueman24 Yeah when I did a quick check on GCP Mumbai, the latency was a bit high. Also, they claim to have premium tier network also, where the traffic is carried over Google network the farthest and leaves / enters Google network from your closest POP.

But yeah the latency is higher than from AWS Mumbai to Europe 🤷‍♂️

So far, by tunnel to AWS Mumbai over BSNL seem alright. 🤞
 
Code:
root@varkey:~# ping -I pppoe-wan 182.74.xx.xx -c 4
PING 182.74.xx.xx (182.74.xx.xx): 56 data bytes
64 bytes from 182.74.xx.xx: seq=0 ttl=50 time=256.847 ms
64 bytes from 182.74.xx.xx: seq=1 ttl=50 time=253.608 ms
64 bytes from 182.74.xx.xx: seq=2 ttl=50 time=255.265 ms
64 bytes from 182.74.xx.xx: seq=3 ttl=50 time=253.042 ms

--- 182.74.xx.xx ping statistics ---
4 packets transmitted, 4 packets received, 0% packet loss
round-trip min/avg/max = 253.042/254.690/256.847 ms
root@varkey:~# ping -I wg 182.74.xx.xx -c 4
PING 182.74.xx.xx (182.74.xx.xx): 56 data bytes
64 bytes from 182.74.xx.xx: seq=0 ttl=45 time=88.326 ms
64 bytes from 182.74.xx.xx: seq=1 ttl=45 time=92.605 ms
64 bytes from 182.74.xx.xx: seq=2 ttl=45 time=86.210 ms
64 bytes from 182.74.xx.xx: seq=3 ttl=45 time=100.207 ms

--- 182.74.xx.xx ping statistics ---
4 packets transmitted, 4 packets received, 0% packet loss
round-trip min/avg/max = 86.210/91.837/100.207 ms
root@varkey:~#

The difference of going direct vs going via the WG tunnel 🤷‍♂️ Good that I spent some time yesterday setting it up. 🚀
 

Back