A network systems engineer is troubleshooting client connection behavior for an enterprise Voice over IP (VoIP) deployment. Telephony endpoints issue a DNS query to discover available Session Initiation Protocol (SIP) servers for the domain `voip.example.com`. The engineer executes a `dig` command from a test workstation and receives the following response:
text
;; QUESTION SECTION:
;_sip._tcp.voip.example.com. IN SRV
;; ANSWER SECTION:
_sip._tcp.voip.example.com. 3600 IN SRV 10 60 5060 pbx1.voip.example.com.
_sip._tcp.voip.example.com. 3600 IN SRV 10 20 5060 pbx2.voip.example.com.
_sip._tcp.voip.example.com. 3600 IN SRV 20 100 5060 pbx3.voip.example.com.
Based on the RFC-standard evaluation rules for DNS SRV records, which of the following statements accurately describes how client traffic will be distributed across these servers under normal operating conditions?
- AClients will direct all initial requests to pbx3.voip.example.com because it has the highest priority value (20).
- Clients will attempt connection to pbx1.voip.example.com approximately 75% of the time and pbx2.voip.example.com 25% of the time, keeping pbx3.voip.example.com as a standby backup.Answer
- CClients will round-robin evenly across all three servers because DNS queries use UDP port 53 by default without evaluating weight fields.
- DClients will establish primary connections to pbx3.voip.example.com over TCP port 5060 while using UDP port 53 to load balance between pbx1 and pbx2.