LoginSignup
1
0

More than 1 year has passed since last update.

「DNS_PROBE_FINISHED_NXDOMAIN」の切り分け

Posted at

chromeで「このサイトにアクセスできません」と書かれている下DNS_PROBE_FINISHED_NXDOMAINと書いてあった場合の切り分け備忘録。
AWSでの構築前提。

1.ALBのDNS名へのアクセスを試す

これでアクセスできれば2.へ進む
アクセスできないならALBより先の切り分けを行う

2.NSレコードの状態を見る

こうなればNSレコードが消えているのでドメイン管理している先を確認

$host -tNS testapp.com
Host testapp.com not found: 3(NXDOMAIN)

こうなるとドメインに問題がない為Route53のレコードにNSレコードが登録されているか確認する

$host -tNS testapp.com
testapp.com name server ns-xxx.awsdns-xx.org.
testapp.com name server ns-xxx.awsdns-xx.com.
testapp.com name server ns-xxx.awsdns-xx.net.
testapp.com name server ns-xxx.awsdns-xx.co.uk.
1
0
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
1
0