0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

mxtoolbox でアドレスが引けない時の調べ方

Posted at

MXtoolbox でアドレスが引けないというトラブルがあった時の調べ方です。
自分の端末で dig で調べてアドレスが引けるのに、MXtoolbox では、引けないというようなケースです。
その違いは、MXtoolbox が かなり上位の DNSサーバーに問い合わせをしているのに、自分の端末は近くの DNSサーバーに問い合わせをだしているということです。

そこで、上位のサーバーを探します。

  1. 例えば、*.net というドメインだと
$ dig net. NS

;; ANSWER SECTION:
net.			172242	IN	NS	h.gtld-servers.net.
net.			172242	IN	NS	i.gtld-servers.net.
net.			172242	IN	NS	l.gtld-servers.net.
net.			172242	IN	NS	m.gtld-servers.net.
net.			172242	IN	NS	a.gtld-servers.net.
net.			172242	IN	NS	k.gtld-servers.net.
net.			172242	IN	NS	j.gtld-servers.net.
net.			172242	IN	NS	c.gtld-servers.net.
net.			172242	IN	NS	e.gtld-servers.net.
net.			172242	IN	NS	b.gtld-servers.net.
net.			172242	IN	NS	g.gtld-servers.net.
net.			172242	IN	NS	f.gtld-servers.net.
net.			172242	IN	NS	d.gtld-servers.net.

この中のどれかのサーバーに dig をかければ、MXtool と同じ結果が得られます。

dig sample.net @a.gtld-servers.net. +norec
  1. 例えば、*.org というドメインだと
$ dig org. NS

;; ANSWER SECTION:
org.			86400	IN	NS	b0.org.afilias-nst.org.
org.			86400	IN	NS	b2.org.afilias-nst.org.
org.			86400	IN	NS	d0.org.afilias-nst.org.
org.			86400	IN	NS	c0.org.afilias-nst.info.
org.			86400	IN	NS	a2.org.afilias-nst.info.
org.			86400	IN	NS	a0.org.afilias-nst.info.

この中のどれかのサーバーに dig をかければ、MXtool と同じ結果が得られます。

dig sample.org @b2.org.afilias-nst.org. +norec
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?