A network engineer is troubleshooting connectivity issues between an EC2 instance in a VPC and an on-premises server over a Direct Connect connection. The engineer has verified that the VPC route tables, Direct Connect virtual interface, and on-premises routing are correctly configured. Which tool should be used to verify the path MTU and identify fragmentation issues?
Trap 1: Use the netstat command
netstat shows connections, not path MTU.
Trap 2: Use the nslookup command
nslookup is for DNS resolution, not MTU.
Trap 3: Use the traceroute command
traceroute shows path but doesn't test MTU effectively.
- A
Use the netstat command
Why wrong: netstat shows connections, not path MTU.
- B
Use the ping command with the DF flag set to test MTU
ping with 'do not fragment' flag can detect MTU issues.
- C
Use the nslookup command
Why wrong: nslookup is for DNS resolution, not MTU.
- D
Use the traceroute command
Why wrong: traceroute shows path but doesn't test MTU effectively.