dreamvi
12/27/2023, 4:36 AMnickwebcouk
12/27/2023, 7:59 AMthesmae
12/27/2023, 10:27 AMI hate myself
12/27/2023, 2:54 PMChaika
12/27/2023, 4:17 PMDjkáťo
12/27/2023, 8:36 PMlxnchtxme
12/27/2023, 9:26 PMd4rkscr1pts
12/28/2023, 2:08 AMdenmagni
12/28/2023, 2:32 AMlukieeeeee
12/28/2023, 3:25 AMmjchesley
12/28/2023, 3:41 AMdvidpi
12/28/2023, 12:43 PMmirai699
12/28/2023, 2:19 PMmrnooli
12/28/2023, 2:53 PMkraz
12/28/2023, 7:07 PMERR_SSL_VERSION_OR_CIPHER_MISMATCH
error. This has only been happening for the past hour or so, despite having the site live for months. What is going on here?kinsukmc
12/28/2023, 7:32 PMsnorting_maple_syrup
12/28/2023, 7:44 PMTuinboon
12/28/2023, 8:28 PMspaone
12/28/2023, 9:52 PMMackenly
12/29/2023, 1:03 AMmm6683
12/29/2023, 1:21 AMohyzd
12/29/2023, 10:08 AMalvaro_silva
12/29/2023, 5:58 PMndk7599
12/29/2023, 9:26 PMskylxne
12/29/2023, 10:52 PMpranshu54
12/30/2023, 12:14 AMBrend4n
12/30/2023, 2:43 AMmr_village2
12/30/2023, 4:48 AMTuinboon
12/30/2023, 10:29 AMphiwijo
12/30/2023, 2:54 PMpy
import requests
print(requests.get("http://example.com").text)
This seems to happen because it queries both the A and AAAA record at the same time and I only get a response for the A record (which was queried first). After not getting the AAAA record it asks for both of the records again but in succession. If I use the proxy of my router I don't have said issue. The first screenshot attached to the post is Wireshark with the filter set to frame contains "example"
.
If I specify for what type of TCPConnector to use e.g. with:
py
import aiohttp
import socket
import asyncio
async def fetch_data():
connector = aiohttp.TCPConnector(family=socket.AF_INET6)
async with aiohttp.ClientSession(connector=connector) as session:
response = await session.get("https://www.example.com")
return await response.text()
data = asyncio.run(fetch_data())
print(data)
It only asks for the AAAA record and I don't get any delay.
The second Screenshot is when I've used my router as my DNS. Another important thing to add is that I am using archlinux on kernel version 6.6.8.arch1-1. It would be nice to know if this is an issue caused by me which I am able to resolve by myself, if this is expected behaviour or an issue with the cloudflare DNS.
Thank you!