Why can’t AT&T users access my website anymore?

0
12
Asked By CuriousCat92 On

I'm running a small business website that suddenly became inaccessible for anyone using an AT&T cellular network. Personally, on my AT&T phone, it seems like the connection just drops. However, I can access the site without issues if I'm on Wi-Fi or using a VPN. When I run a DNS lookup, it resolves correctly, and I can SSH into the server using the IP address. I've tried some trace tools through a hotspot, but they hindered UDP traffic, which didn't help. The site passes TLS checks and isn't flagged or blacklisted anywhere that I've found. We're quite confused about what's going on. Does anyone have any insight into this?

5 Answers

Answered By IPv6Invariant On

It might be a firewall issue where AT&T blocks certain ports (like 80 or 443) for specific IP ranges. I’ve seen this happen before with mobile users being assigned IPv6 addresses, while the server wasn’t configured to accept them. You may want to check your server settings and try enabling IPv6 to see if that resolves the problem. As you found later, adding the correct IPv6 listen directive in your Nginx config could be crucial.

Answered By TechDudeX On

It sounds like it could be a DNS issue with AT&T. Since you can access your server directly via its IP address, the DNS resolution might be failing for some reason. It might be worth checking that the DNS cache is updated properly. Sometimes, if a domain's lease time is set too short, DNS records can be outdated before they refresh, leading to connection problems for certain ISPs.

Answered By ServerGuru99 On

Make sure to check if your website is on any spam or malware lists that AT&T might be using. Although you mentioned it wasn't flagged, it’s worth double-checking just to be safe.

Answered By NetworkNerd44 On

You should verify your server's IP against spam lists. I had a similar situation where my shared hosting's IP was flagged, and it affected connectivity. Even if it seems unrelated, it can cause issues with multiple users.

Answered By JustYourAverageDev On

Hey, I went through something similar! Turns out our old IT head had blocked a range of IPs due to spamming. It was frustrating until we figured it out. If you suspect a similar issue, look into your hosting configurations. It might also help to use your own DNS server while connected to a hotspot to bypass any problems.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.