LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 03-15-2024, 09:40 AM   #1
mw.decavia
Member
 
Registered: Feb 2024
Distribution: Slackware64-15 & Afterstep , oh my
Posts: 78

Rep: Reputation: 8
cloudflare dns not responding


A foolish question, but did cloudflare shutdown it's dns services (free or otherwise) without telling anyone?

I have been using xfinity now wifi pass, with an acceptable level of service. And using cloudflare dns (1.1.1.1 and 1.0.0.1) - standard dns udp:53 with dnssec.

But as of yesterday morning, many dns requests were being delayed by sometimes over 1 minute, and many other dns requests were failing completely after being delayed. And some being redirected through proxies to obviously wrong websites.

As of this morning, cloudflare dns is completely non-responsive. Both standard udp:53 dns and DoH tcp:443 (as implemented by Mozilla) fail on every request.

I am only able to post this message because I switched to xfinity's own dns servers (75.75.75.75 and 75.75.76.76).

Does anyone know more about this?
 
Old 03-15-2024, 11:06 AM   #2
TenTenths
Senior Member
 
Registered: Aug 2011
Location: Dublin
Distribution: Centos 5 / 6 / 7
Posts: 3,475

Rep: Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553
Quote:
Originally Posted by mw.decavia View Post
A foolish question, but did cloudflare shutdown it's dns services (free or otherwise) without telling anyone?

I have been using xfinity now wifi pass, with an acceptable level of service. And using cloudflare dns (1.1.1.1 and 1.0.0.1) - standard dns udp:53 with dnssec.

But as of yesterday morning, many dns requests were being delayed by sometimes over 1 minute, and many other dns requests were failing completely after being delayed. And some being redirected through proxies to obviously wrong websites.

As of this morning, cloudflare dns is completely non-responsive. Both standard udp:53 dns and DoH tcp:443 (as implemented by Mozilla) fail on every request.

I am only able to post this message because I switched to xfinity's own dns servers (75.75.75.75 and 75.75.76.76).

Does anyone know more about this?
1.1.1.1 and 1.0.0.1 are working just fine for me:
Code:
# nslookup
> tentenths.com
Server:         8.8.8.8
Address:        8.8.8.8#53

Non-authoritative answer:
Name:   tentenths.com
Address: 5.135.72.81
> server 1.1.1.1
Default server: 1.1.1.1
Address: 1.1.1.1#53
> tentenths.com
Server:         1.1.1.1
Address:        1.1.1.1#53

Non-authoritative answer:
Name:   tentenths.com
Address: 5.135.72.81
> server 1.0.0.1
Default server: 1.0.0.1
Address: 1.0.0.1#53
> tentenths.com
Server:         1.0.0.1
Address:        1.0.0.1#53

Non-authoritative answer:
Name:   tentenths.com
Address: 5.135.72.81
>
 
1 members found this post helpful.
Old 03-15-2024, 12:43 PM   #3
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,138
Blog Entries: 6

Rep: Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827
Code:
dig @1.1.1.1 linuxquestions.org

; <<>> DiG 9.18.24 <<>> @1.1.1.1 linuxquestions.org
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 49755
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;linuxquestions.org.            IN      A

;; ANSWER SECTION:
linuxquestions.org.     300     IN      A       35.244.195.25

;; Query time: 23 msec
;; SERVER: 1.1.1.1#53(1.1.1.1) (UDP)
;; WHEN: Fri Mar 15 12:42:21 CDT 2024
;; MSG SIZE  rcvd: 63

dig @8.8.8.8 linuxquestions.org

; <<>> DiG 9.18.24 <<>> @8.8.8.8 linuxquestions.org
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 44705
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 512
;; QUESTION SECTION:
;linuxquestions.org.            IN      A

;; ANSWER SECTION:
linuxquestions.org.     300     IN      A       35.244.195.25

;; Query time: 46 msec
;; SERVER: 8.8.8.8#53(8.8.8.8) (UDP)
;; WHEN: Fri Mar 15 12:42:47 CDT 2024
;; MSG SIZE  rcvd: 63
 
1 members found this post helpful.
Old 03-15-2024, 05:49 PM   #4
mw.decavia
Member
 
Registered: Feb 2024
Distribution: Slackware64-15 & Afterstep , oh my
Posts: 78

Original Poster
Rep: Reputation: 8
Thank you both for answering, knowing that it was not happening to anyone else pointed me to focus my troubleshooting efforts at my end.

After several hours of troubleshooting, I found that the raspberry pi I have been using as a local dns cache with bind 9 had become hacked and seriously compromised. Must be from some remote hacker, because no one else but me had physical access.

The bind was 9.2 , an out of date version, because that is what apt-get installed last summer.

The raspberry did not even have sshd enabled. I configured it's memory card directly. So the security weakness must have been in bind 9.2

I think I will move away from using bind. Maybe unbound would be safer?

Quote:
Originally Posted by teckk View Post
Code:
dig @1.1.1.1 linuxquestions.org

; <<>> DiG 9.18.24 <<>> @1.1.1.1 linuxquestions.org
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 49755
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;linuxquestions.org.            IN      A

;; ANSWER SECTION:
linuxquestions.org.     300     IN      A       35.244.195.25

;; Query time: 23 msec
;; SERVER: 1.1.1.1#53(1.1.1.1) (UDP)
;; WHEN: Fri Mar 15 12:42:21 CDT 2024
;; MSG SIZE  rcvd: 63

dig @8.8.8.8 linuxquestions.org

; <<>> DiG 9.18.24 <<>> @8.8.8.8 linuxquestions.org
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 44705
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 512
;; QUESTION SECTION:
;linuxquestions.org.            IN      A

;; ANSWER SECTION:
linuxquestions.org.     300     IN      A       35.244.195.25

;; Query time: 46 msec
;; SERVER: 8.8.8.8#53(8.8.8.8) (UDP)
;; WHEN: Fri Mar 15 12:42:47 CDT 2024
;; MSG SIZE  rcvd: 63
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
DNS server - should I try Cloudflare 1.1.1.1? GPGAgent Linux - Networking 11 02-14-2022 07:36 PM
LXer: Linux 4.16 Released, SLES SP3 for Raspberry Pi, Cloudflare Launches the 1.1.1.1 Privacy-First DNS Service and More LXer Syndicated Linux News 0 04-03-2018 04:10 AM
Centos 7 and Postfix smt banner not match issue for my domain as i am behind Cloudflare bmxakias Linux - Server 1 01-01-2018 08:21 AM
IPTables + Cloudflare tehwaffle Linux - Security 2 02-03-2012 04:10 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 05:02 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration