A network administrator is troubleshooting an issue where external email servers are unable to deliver messages to `example.com`. The administrator executes a DNS query tool to check the domain's mail configuration and receives the following output:
$ dig MX example.com +noall +answer
example.com. 3600 IN MX 10 mail.example.com.
When sending test emails, remote mail servers report a host resolution failure when attempting to reach `mail.example.com`.
Which of the following DNS resource records is missing from the authoritative zone file for `example.com`?
- An A record mapping mail.example.com to its corresponding IPv4 addressCevap
- BA CNAME record mapping example.com directly to mail.example.com
- CA PTR record mapping mail.example.com to the mail server IPv4 address
- DAn SRV record mapping port 25 on TCP to mail.example.com
Cevap
An A record mapping mail.example.com to its corresponding IPv4 address
The MX (Mail Exchanger) record returns the hostname mail.example.com as the designated mail server for the domain. However, MX records do not contain IP addresses. For mail servers to establish a TCP connection, the DNS zone must contain a forward lookup host record (an A record for IPv4 or an AAAA record for IPv6) that maps mail.example.com to its IP address.
Adım Adım Çözüm
Anahtar Kavram
DNS MX Record and Host A Record Dependency