You probably forgot to renew the domain name (since the registry shows its expiration date to be 2020-09-04T23:33:05Z
) and when that happens many registrars will either suspend the domain (put the domain on EPP clientHold
) status) or change the domain name nameservers, which will provide different answsers.
Why I think so?
- you said everything was working since 2018 and you did not change anythin
- you posted today saying "last week", which makes the problem around the the 23, or 20 days after the expiration date
- "The domain was automatically extended earlier September" is ambiguous: yes, technically in gTLD domains are automatically renewed at expiration... but that holds only if you pay your registrar at some point, otherwise the domain will get deleted; but before that, and as soon as expiration date is reached, the registrar can change the resolution of your domain for various reasons including making sure you are finally alerted that you need to act.
Based on @MLu answer, we see the nameservers which are the one of your registrar (Amazon), as they were cached by some recursive nameservers.
But if we ask the registry right now, it publishes the correct nameservers:
$ dig @a.gtld-servers.net thuijls.net NS | grep -E 'IN\s+NS\s+\S'
thuijls.net. 172800 IN NS ns-975.awsdns-57.net.
thuijls.net. 172800 IN NS ns-1151.awsdns-15.org.
thuijls.net. 172800 IN NS ns-1600.awsdns-08.co.uk.
thuijls.net. 172800 IN NS ns-29.awsdns-03.com.
So I guess you went to your registrar to renew the domain by paying for it, which put it back on its previous nameservers.
Both 1.1.1.1
, 8.8.8.8
and 9.9.9.9
now also have this set of nameservers for your domain, so your problem seems solved:
$ for ns in 1.1.1.1 8.8.8.8 9.9.9.9 ; do echo $ns; dig @$ns thuijls.net TXT +short; done
1.1.1.1
"protonmail-verification=da168308ef062c75001796f57700ee75473bb0dd"
"v=spf1 include:_spf.protonmail.ch mx ~all"
8.8.8.8
"protonmail-verification=da168308ef062c75001796f57700ee75473bb0dd"
"v=spf1 include:_spf.protonmail.ch mx ~all"
9.9.9.9
"protonmail-verification=da168308ef062c75001796f57700ee75473bb0dd"
"v=spf1 include:_spf.protonmail.ch mx ~all"