A network engineer is troubleshooting an issue where client computers can establish a basic TCP handshake with a remote application server across an IPsec VPN tunnel, but bulk data transfers fail or time out. The engineer suspects that packets exceeding the tunnel's Maximum Transmission Unit (MTU) are being dropped because path MTU discovery is failing.
Which of the following command-line utility commands should the engineer run on a Windows workstation to test reachability while setting the Don't Fragment flag to identify the maximum unfragmented payload size?
- ping -f -l 1472 172.16.10.50Cevap
- Bnslookup -type=any 172.16.10.50
- Cdig -t AAAA 172.16.10.50
- Dnetstat -an -p tcp
Cevap
Running 'ping -f -l 1472 172.16.10.50' sends an ICMP echo request with the Don't Fragment bit enabled (-f) and a specific payload size (-l 1472), allowing the engineer to determine the maximum MTU that can pass without fragmentation.
The option specifying 'ping -f -l 1472 172.16.10.50' is correct because on Windows systems, '-f' instructs the operating system to set the Don't Fragment (DF) bit in the IP header, and '-l' defines the buffer size. This allows administrators to test path MTU limits and detect where packet fragmentation failures occur.
Adım Adım Çözüm
Anahtar Kavram
Path MTU Discovery using ICMP ping options (-f for Don't Fragment, -l for payload length)
Tahmini Süre:1m 15s