tcp connection timeout mystery

For over a year, I’ve been investigating a strange issue with the internet in my apartment. I’m posting the details here in case someone more knowledgeable than me can solve the mystery.

I live in graduate student housing with internet provided by the university campus. Usually things work reasonably well, with one exception. On the wired network, I cannot connect to IP addresses used by Bunny CDN.1

Screenshot of curl to fonts.bunny.net failing with “SSL connection timeout”

Many websites use Bunny CDN to serve static assets. The connection timeouts break these sites. Some fail to load images, some load after a 60 second timeout, and some cannot load at all. I’ve seen consistent failures on all of the following sites:

This issue occurs only on the campus network, and only when connected to the wired network (the university also provides wireless eduroam and guest networks, which work correctly). It happens on every device and operating system I’ve tested (laptop/phone/desktop and Linux/Windows/macOS/iOS). It happens whether connecting through a NetGear WiFi router or connecting my computer directly to the campus network via Ethernet. It happens using both HTTP and HTTPS (but ping works fine).

It happens consistently, every time I test it. Packet captures of the timeouts always show the exact same behavior:

Screenshot of packet capture for TCP connection timeout

  1. Packet #1: Client (136.152.38.228) sends SYN to server (169.150.221.147).
  2. Packet #2: Server responds with SYN+ACK.
  3. Packet #3: Client responds with ACK to complete the TCP 3-way handshake.
  4. Packet #8: Server resends SYN+ACK, indicating that it never received the client ACK.
  5. Client and server repeatedly resend ACK and SYN+ACK.
  6. Packet #17: Client times out and terminates the connection with FIN+ACK.

This looks to me like the client ACK never reaches the server.

My best guess is that maybe asymmetric routing causes the campus firewall to drop packets:

  1. Client SYN goes through the firewall.
  2. Server SYN+ACK routed back to the client, incorrectly bypassing the firewall.
  3. Client ACK goes to the firewall and gets dropped because the firewall never received the server SYN+ACK.

However, I don’t know what routing misconfiguration could cause this or why it affects only IP addresses from Bunny CDN.

I spent over a week trying to escalate this problem through Berkeley Student Tech Services. After I explained the problem to three different teams, someone from the Network Operations and Services team closed the ticket, telling me:

Since it is happening with only certain websites, you should ensure that there is not a static DNS entry in the wired connection of your device that is in conflict with our DNS service. We are not seeing any indication that this is an issue with our network at this point in time… This is all functioning as it was designed to per the Principal Wifi Engineer for the campus.

As you might imagine, I found this response unconvincing.2

I’m still very curious what could cause an issue like this. Why are the client ACK packets to those specific IP addresses being dropped? Is there something special about Bunny CDN that could interact badly with the campus network configuration?

Update: Thanks to everyone who emailed me with comments and suggestions! After I wrote this post, I learned some new information that (mostly) solves the mystery. Please see my follow-up post here.


  1. Traceroute to the IP address always shows a subdomain of “bunnyinfra.net.” ↩︎

  2. I really don’t understand how they think a static DNS entry could cause a TCP handshake failure. (Or, for that matter, what it means for a DNS entry to be “in the wired connection” of a device.) The IP address in the packet capture matches the address returned by Google and Cloudflare DNS resolvers, so it’s definitely correct. ↩︎