I set up a Raspberry Pi 3 with AdguardHome for a friend of mine, and told him to disconnect everything at home and try to watch anything on his phone, being the only device using his home’s internet.

He just sent me this, and now he’s ready to #degoogle 🤣🤣🤣

He says there were hundreds in less than 5 minutes.

  • voxel@sopuli.xyz
    link
    fedilink
    arrow-up
    34
    arrow-down
    2
    ·
    edit-2
    4 months ago

    there are hundreds because they got blocked.
    android phones actively retry connectivity checks every 3 seconds until a successful connection is achieved, then it ramps down to a check every 5 minutes, and the default server is google’s. (this functionality is used for the little exclamation mark next to the wifi icon if there’s no internet connection)
    no data is sent along that request (it’s just a GET request), not even useragent etc (the only thing google gets is the source of the request, aka the ip address, which is basically meaningless if it’s not associated with any other data)
    you should actually be able to point that domain to any ip that responds with empty body + http 204 code to /generate_204 and it should work as expected

    • JJLinux@lemmy.mlOP
      link
      fedilink
      arrow-up
      5
      ·
      4 months ago

      Oh, cool. I’ll look into redirecting these to a 204. That should be a pretty interesting experiment for me. Thank you.