An enterprise network administrator is auditing an organization's authoritative external DNS server configuration following a security compliance review. The audit requires configuring zone replication securely, ensuring proper transport protocol handling for large DNSSEC-signed payloads, and maintaining compliant email sender verification. During diagnostic testing, the administrator executes the following `dig` commands against the primary authoritative name server:
text
$ dig @ns1.example.com example.com AXFR
;; communications error to 192.0.2.10#53: end of file
$ dig @ns1.example.com example.com +dnssec +bufsize=4096
;; Truncation flag (TC) set; retrying over TCP...
;; Query time: 14 msec
;; SERVER: 192.0.2.10#53(192.0.2.10) (TCP)
;; MSG SIZE rcvd: 2840
Based on the diagnostic output and DNS architectural standards, which TWO of the following statements correctly identify the underlying transport requirements and resource record implementations for this environment?
- Full zone transfers (AXFR) and DNS queries whose responses exceed payload size limits require open TCP port 53 communications through firewalls between involved name servers and clients.Cevap
- BDomain Name System Security Extensions (DNSSEC) validation exclusively relies on UDP port 53, causing stub resolvers to drop any packet where the TC (Truncation) flag is set.
- Sender Policy Framework (SPF) records must be published as standard TXT records, as the dedicated SPF record type (Type 99) was deprecated by RFC 7208.Cevap
- DMail exchanger (MX) record preference targets must point directly to a CNAME record to allow flexible canonical hostname redirection across remote web clusters.
- EStandard DNS resolution operates entirely on UDP port 53, so all TCP port 53 traffic should be blocked at the perimeter firewall to prevent unauthorized administrative terminal access.