If you have AT&T fiber, run the script in the linked gist: https://twitter.com/bmastenbrook/status/1335400747794530304 It loads http://example.com and https://example.com and compares the result (should be equal) in a loop, and then reports if it finds a difference. I'm seeing multiple bit flips in the unencrypted version, and having a lot of issues loading web pages, presumably because a corrupted packet in a TLS ha…
Why wouldn't the first conclusion be that the example.com service was flipping bits? Load balancing TLS requests to a different front-end pool is very common. Has anyone claimed to see these flipped bits on a domain other than example.com?
AT&T Fiber in the SF Bay Area is flipping bits
161–170 of 374 posts
Re: AT&T Fiber in the SF Bay Area is flipping bits
#162Re: AT&T Fiber in the SF Bay Area is flipping bits
#163Earlier quoted context omitted.
All of these large companies seem to have (correctly) realized that 95% of tech support cases are trivial issues that can be resolved via automated responses. The problem is that they then assume that all cases are one of those 95% in order to solve the 95% as quickly as possible, which probably looks good to whatever metrics they're tracking. But if you're one of the 5% you're fucked. If there's anyone out there des…
The problem is that the idiots the hire to do their "technical" support have zero skill (nor motivation to learn) to assess whether it's a 5% problem or not, and the majority of end-users aren't capable to answer that question either, nor that they are incentivized to answer truthfully. The solution could be a priority support tier where you pay upfront for an hour of a real network engineer's time (decently compensa…
Re: AT&T Fiber in the SF Bay Area is flipping bits
#164Sonic has their own fibre in San Francisco. Thank god for that. Life's too short for Comcast or AT&T.
Source? We have Sonic DSL and I see differences using the example.com test; and at installation time I was told I could only get fiber at my location (backside of Bernal) when AT&T put it in and they could lease it. That was in 2019. Do they own their own fiber in some areas?
Re: AT&T Fiber in the SF Bay Area is flipping bits
#165If you have AT&T fiber, run the script in the linked gist: https://twitter.com/bmastenbrook/status/1335400747794530304 It loads http://example.com and https://example.com and compares the result (should be equal) in a loop, and then reports if it finds a difference. I'm seeing multiple bit flips in the unencrypted version, and having a lot of issues loading web pages, presumably because a corrupted packet in a TLS ha…
Why would a TCP connection allow flipped bits to make it through?
My ATT modem (Arris bgw-210-700) may have gotten a firmware upgrade recently as I found some settings I shut off got re-enabled. I use it for VDSL but the same model family is used for ATT fiber.
Re: AT&T Fiber in the SF Bay Area is flipping bits
#166Earlier quoted context omitted.
The parts of SV that haven't buried their power lines (not too pretty to begin with) have gotten significantly uglier since all of the new cable/fiber/DSL infrastructure has gone in. There are in many cases multiple of these things on loads of poles: https://www.dslreports.com/forum/r31593060-Equip-What-is-thi...
Here in Germany we bury everything . I don't even want to imagine how long it takes to rebuild all of that when some drunkard crashes his car into one of these poles or a lightning strike hits.
Re: AT&T Fiber in the SF Bay Area is flipping bits
#167Earlier quoted context omitted.
How do you mean? How would it know if a bit in the HTTP payload got flipped?
Checksums. TCP is supposed to provide reliability against data corruption, resend bad packets, etc.
Re: AT&T Fiber in the SF Bay Area is flipping bits
#168Re: AT&T Fiber in the SF Bay Area is flipping bits
#169Earlier quoted context omitted.
How do you mean? How would it know if a bit in the HTTP payload got flipped?
Checksums. TCP is supposed to provide reliability against data corruption, resend bad packets, etc.
Re: AT&T Fiber in the SF Bay Area is flipping bits
#170From my professional experience of programming and debugging networking equipment, this could be a switch/router with a buffer with bad memory (stuck bit maybe). The better chips have CRC/Parity/ECC to cover such issues but there are always those magical choke points where the past CRC is tossed and the new one is generated that can leave a gaping hole. The tricky part is how often is this bad memory buffer used... I…