GitHub Pages site times out on Econet Zimbabwe mobile network but works through WARP #207584
🏷️ Discussion TypeQuestion 💬 Feature/Topic AreaPages BodyHello, I am having a connectivity problem with my GitHub Pages website: https://emergingpointconstruction.github.io/EmergingPoint-Construction/ The site consistently returns: ERR_CONNECTION_TIMED_OUT when I access it using Econet Zimbabwe mobile data on a Samsung Galaxy M13. Important details:
Could someone please advise whether there is a GitHub Pages routing or connectivity issue affecting this Pages site or its edge path? Thank you. |
Replies: 1 comment 1 reply
|
This almost certainly isn't something wrong with your site or deployment. It looks like a routing problem between Econet and the network GitHub Pages is served from. github.com and GitHub Pages don't share infrastructure. github.com resolves to GitHub's own IPs (140.82.x.x), while So github.com loading fine doesn't tell you much about Pages. And since DNS resolves correctly but the connection times out, the TCP connection to those 185.199.x.x addresses is being dropped somewhere along the way. WARP working fits that picture: it tunnels your traffic out through Cloudflare, which bypasses whatever path Econet is taking to Fastly. A few things will help narrow it down and give Econet something concrete:
When you go back to Econet, "the site doesn't load" usually gets you a "no issue on our side" answer. Be specific instead: tell them connections to 185.199.108.0/22 (Fastly, AS54113) time out on their mobile network, and include the traceroute. That's much harder to wave off. Their mobile data may also route differently from their fixed-line network, so ask them to check the mobile path specifically. It's also worth opening a ticket at https://support.github.com. Community discussions aren't really monitored by GitHub staff for this kind of thing, and they can raise it with Fastly if needed. In the meantime, if you need the site reachable for visitors on Econet right now, there are two workarounds:
Hope that helps. Post the traceroute results here if you get stuck and I can take a look. |
This almost certainly isn't something wrong with your site or deployment. It looks like a routing problem between Econet and the network GitHub Pages is served from.
github.com and GitHub Pages don't share infrastructure. github.com resolves to GitHub's own IPs (140.82.x.x), while
*.github.iois served through Fastly's CDN on these addresses:So github.com loading fine doesn't tell you much about Pages. And since DNS resolves correctly but the connection times out, the TCP connection to those 185.199.x.x addresses is being dropped somewhere along the way. WARP working fits that picture: it tunnels your traffic out through Cl…