dns:私の訪問者への空の応答(特定のドメイン)

dns:私の訪問者への空の応答(特定のドメイン)

自分のホスト(Windows)から自分のドメインの背後にあるIPを取得できます。

> nslookup.exe setools.t-systems.es
Servidor:  clients-susu1.dns.telekom.de
Address:  10.199.135.102

Respuesta no autoritativa:
Nombre:  setools.t-systems.es
Address:  10.49.89.9

私のゲスト(archlinux)から私のサービスにアクセスしようとしているように、空の応答が表示されます。

$ dig setools.t-systems.es
; <<>> DiG 9.18.21 <<>> setools.t-systems.es
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54338
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 65494
;; QUESTION SECTION:
;setools.t-systems.es.      IN  A

;; Query time: 3 msec
;; SERVER: 127.0.0.53#53(127.0.0.53) (UDP)
;; WHEN: Thu Jan 25 14:33:28 CET 2024
;; MSG SIZE  rcvd: 49

使用dog:

$ dog setools.t-systems.es -J
{
  "responses": [
    {
      "additionals": [],
      "answers": [
        {
          "address": "10.49.89.9",
          "class": "IN",
          "name": "setools.t-systems.es.",
          "ttl": 27,
          "type": "A"
        }
      ],
      "authorities": [],
      "queries": [
        {
          "class": "IN",
          "name": "setools.t-systems.es.",
          "type": 1
        }
      ]
    }
  ]
}

ただし、以下からIPを取得することもできますapi.ocpdes.t-systems.es

$ dog api.ocpdes.t-systems.es -J
{
  "responses": [
    {
      "additionals": [],
      "answers": [
        {
          "address": "10.49.99.166",
          "class": "IN",
          "name": "api.ocpdes.t-systems.es.",
          "ttl": 331,
          "type": "A"
        }
      ],
      "authorities": [],
      "queries": [
        {
          "class": "IN",
          "name": "api.ocpdes.t-systems.es.",
          "type": 1
        }
      ]
    }
  ]
}

私のもの/etc/resolv.conf

# This is /run/systemd/resolve/stub-resolv.conf managed by man:systemd-resolved(8).
# Do not edit.
#
# This file might be symlinked as /etc/resolv.conf. If you're looking at
# /etc/resolv.conf and seeing this text, you have followed the symlink.
#
# This is a dynamic resolv.conf file for connecting local clients to the
# internal DNS stub resolver of systemd-resolved. This file lists all
# configured search domains.
#
# Run "resolvectl status" to see details about the uplink DNS servers
# currently in use.
#
# Third party programs should typically not access this file directly, but only
# through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a
# different way, replace this symlink by a static file or a different symlink.
#
# See man:systemd-resolved.service(8) for details about the supported modes of
# operation for /etc/resolv.conf.

nameserver 127.0.0.53
options edns0 trust-ad
search lan lan\044tse.ads.t-systems.es

どんなアイデアがありますか?

ベストアンサー1

Linux側には実際のDNSサーバーのみが必要です。 8.8.8.8と8.8.4.4はGoogleが提供しています。構成は非常に簡単です。 /varにresolv.confがあります。削除してください。ソケットなので再生成されます。 ISP DNSを見つけることができます。$ locate -A var resolv.confあなたのためにそれを見つけるでしょう。

おすすめ記事