What happens(happened) to "mongodb.net"?

mongodb.net” is not accessible, therefore no connection is working with links in that domain.

unknown host mongodb.net

Is this domain closed?

I was away from MDB for sometime, and come see if someone from old threads needs helps as I still get notifications.

One of them has a connection problem and nslookup and other tools show that there is no known host for this address.

If this domain is closed permanently, please send a global message to all users/developers.

And since I did not get any such notification, I am hoping this is temporary. If not, it is very serious problem and needs urgent attention from staff.

Any clusters are subdomains of mongodb.net so this would be expected behavior.

Atlas connections stings are SRV and TXT records and have to be queried specifically for those. The cluster servers are hosted on subdomains.

And of course the cluster and the dns entries for it could have been deleted.


As you can see everything is working fine. My M0 records for example:

dig +short txt cluster0.9qfvh.mongodb.net
"authSource=admin&replicaSet=Cluster0-shard-0"
dig +short srv _mongodb._tcp.cluster0.9qfvh.mongodb.net
0 0 27017 cluster0-shard-00-02.9qfvh.mongodb.net.
0 0 27017 cluster0-shard-00-01.9qfvh.mongodb.net.
0 0 27017 cluster0-shard-00-00.9qfvh.mongodb.net.
for h in $(dig +short srv _mongodb._tcp.cluster0.9qfvh.mongodb.net | cut -d' ' -f 4)
do dig +short ${h}
done
mtm-aws-useast1-5-m0-16-shard-00-00.xlpjl.mongodb.net.
ec2-3-95-113-226.compute-1.amazonaws.com.
3.95.113.226
mtm-aws-useast1-5-m0-16-shard-00-01.xlpjl.mongodb.net.
ec2-3-94-178-87.compute-1.amazonaws.com.
3.94.178.87
mtm-aws-useast1-5-m0-16-shard-00-02.xlpjl.mongodb.net.
ec2-18-210-201-78.compute-1.amazonaws.com.
18.210.201.78
1 Like

This part is new for me. So there is always new things to discover.

so “dig mongodb.net” command is actually enough to see the domain is active but it just needs special care.

Thanks @chris

; <<>> DiG 9.10.6 <<>> mongodb.net
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64822
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1

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

;; AUTHORITY SECTION:
mongodb.net.		60	IN	SOA	ns-761.awsdns-31.net. awsdns-hostmaster.amazon.com. 1 7200 900 1209600 60

;; Query time: 72 msec
;; SERVER: 8.8.8.8#53(8.8.8.8)
;; WHEN: Sun Feb 11 19:29:37 +03 2024
;; MSG SIZE  rcvd: 121

and this

dig +short txt mongodb.net
"MS=ms79283671"

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.