Earlier quoted context omitted.
Or their computer isn't checking the checksum. As is apparently the case on mac os (as reported elsewhere in the thread). Another quality product by Apple ;P
There’s no proof of this. And what possible reason would macOS have for not checking the checksum? Although the checksum is weak it presumably catches at least some corrupt traffic. Do you really think Apple would just skip the TCP checksum and make its network performance less reliable when they have already implemented (or maintained if it came from BSD) the rest of a TCP/IP stack, which is vastly more complex, jus…
AT&T Fiber in the SF Bay Area is flipping bits
361–370 of 374 posts
Re: AT&T Fiber in the SF Bay Area is flipping bits
#362Earlier quoted context omitted.
No, it hasn't made anything uglier - you don't really notice the infrastructure unless you're specifically trying to look for something to get annoyed by.
Maybe you have gotten blind to it? When I first landed in Palo Alto (coming from Europe), I couldn't believe my eyes: 3rd world infrastructure with wires flying everywhere! I most definitely noticed and notice. It's symptomatic of some of the ill that plague Sillicon Valley.
Re: AT&T Fiber in the SF Bay Area is flipping bits
#363Earlier quoted context omitted.
The obnoxious thing to me is the hubris that must be behind this. Either they considered it and decided they would never encounter a system error like this and refused to implement an escalation route, or they never even considered it. Or perhaps even worse than that, maybe they considered it, decided it was possible, but just don't care because of their insane borderline monopoly. I don't understand how internet com…
Either that or every single CSR takes 50 calls per day, every day, that start with "There's a problem with the AT&T network!!!"
Re: AT&T Fiber in the SF Bay Area is flipping bits
#364Re: AT&T Fiber in the SF Bay Area is flipping bits
#365Earlier quoted context omitted.
> presumably because a corrupted packet in a TLS handshake is an error and the connection dies Not just in the handshake, TLS moves these things called TLSPlaintext records (about 16kbytes each), not only in the handshake, but also for all the actual data - and they'll always have integrity protection to ensure bad guys can't change anything. TLS can't know the difference between a bad guy tampering with data and you…
Thanks for sharing this! I have long suspected that TLS does this. It is great: for many applications preventing bitflips in transit is arguably more important than privacy. Is there an authorative source where this is documented?
https://tools.ietf.org/html/rfc8446
If you aren't interested in why this works just the Introduction to the RFC explains the intent, specifically what we care about here is that TLS delivers:
"Integrity: Data sent over the channel after establishment cannot be modified by attackers without detection."
And further notes "These properties should be true even in the face of an attacker who has complete control of the network".
Re: AT&T Fiber in the SF Bay Area is flipping bits
#366Earlier quoted context omitted.
Checksums are also often recomputed on transit if the packet is intercepted, e.g. to limit TTL, unflag odd/unused TCP features, that kind of ISP-ish preening. So if it was a software error or even a hardware problem in the right (wrong) spot it’s possible to get this kind of corruption without retransmits.
I think you are confusing the IP header with TCP header. Routers don’t touch the TCP header at all
Re: AT&T Fiber in the SF Bay Area is flipping bits
#367Earlier quoted context omitted.
Huge bummer but the next generation of ATT routers with onboard ONT don’t work this bypass :(
Do you know the model numbers and/or have any other information about these new routers? I'm currently using eap_proxy with my BGW210, and it's been a huge improvement, but I fear the day the device needs to be replaced with a newer model.
However, it has 5Gbit Ethernet, hasn't re-enabled WiFi on automatic firmware updates, and has only screwed with my IP Passthrough configs once which was resolved with a router reboot. (that was possibly my router's fault, it seemed like it was unable to fetch a new DHCP lease)
Re: AT&T Fiber in the SF Bay Area is flipping bits
#368Earlier quoted context omitted.
I think you are confusing the IP header with TCP header. Routers don’t touch the TCP header at all
if your router does NAT it touches the tcp header
But in any case it's irrelevant in this context as ATT shouldn't be doing any NAT
Re: AT&T Fiber in the SF Bay Area is flipping bits
#369I see this on my end too (redwood city) using the check against example.com diff example-http example-tls 4c4 > Example Domain Been wondering why my tls connections kept failing...
Re: AT&T Fiber in the SF Bay Area is flipping bits
#370Earlier quoted context omitted.
Checksums are also often recomputed on transit if the packet is intercepted, e.g. to limit TTL, unflag odd/unused TCP features, that kind of ISP-ish preening. So if it was a software error or even a hardware problem in the right (wrong) spot it’s possible to get this kind of corruption without retransmits.
I think you are confusing the IP header with TCP header. Routers don’t touch the TCP header at all