
Answer-first summary for fast verification
Answer: The source IP addresses are from on-premises hosts that are routed over AWS Direct Connect., The source IP addresses are from on-premises hosts that are routed over AWS Site-to-Site VPN.
The question revolves around network connectivity issues where clients sometimes fail to receive files from the software deployed on Amazon EC2 instances. The key factors to consider are the use of jumbo frames, the Don't Fragment flag on files, and the network paths (AWS Direct Connect, AWS Site-to-Site VPN, and the public internet) through which clients connect. Jumbo frames can improve network performance but require all devices in the transmission path to support them. The Don't Fragment flag means that if a packet exceeds the MTU (Maximum Transmission Unit) size of any network segment along its path, it will be dropped rather than fragmented. This can cause issues if the path includes segments with smaller MTUs, such as those over the internet or through VPN connections that do not support jumbo frames. Therefore, the root causes of the failures are likely related to the network paths that do not support jumbo frames or have smaller MTUs, leading to packet drops. Options A and B are correct because AWS Direct Connect and AWS Site-to-Site VPN connections might not support jumbo frames or might have MTU sizes smaller than the packets being sent, causing them to be dropped. Option C is less likely because the public internet generally has a smaller MTU, but modern networks and protocols can handle this more gracefully. Option D is unrelated to the issue at hand, as ICMP traffic is not directly related to file transfer failures. Option E is incorrect because the question states that the EC2 instances' elastic network interfaces are set up with jumbo frames, implying the operating system supports them.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
A company hosts a software solution on Amazon EC2 instances within a cluster placement group. The solution's UI consists of a single HTML page sized at 1,024 bytes, while the software processes files larger than 1,024 MB. Files are shared over the network to clients upon request, with the Don't Fragment flag enabled. The EC2 instances' elastic network interfaces are configured with jumbo frames.
The UI remains accessible from all permitted source IP addresses, whether they are within a VPC, on the internet, or on-premises. However, clients occasionally fail to receive requested files due to transmission issues between the software and the clients.
Which two options could be potential root causes of these transmission failures?
A
The source IP addresses are from on-premises hosts that are routed over AWS Direct Connect.
B
The source IP addresses are from on-premises hosts that are routed over AWS Site-to-Site VPN.
C
The source IP addresses are from hosts that connect over the public internet.
D
The security group of the EC2 instances does not allow ICMP traffic.
E
The operating system of the EC2 instances does not support jumbo frames.