Match each command-line network troubleshooting command to its primary diagnostic function.
- ping -f -l 1472Tests path Maximum Transmission Unit (MTU) by sending ICMP packets with the Don't Fragment flag enabled.
- nslookup -type=TXTQueries a DNS server for text records such as SPF or DKIM domain verification strings.
- ss -tulpnDisplays listening TCP/UDP sockets and associated process identifiers on Linux without resolving service names.
- traceroute -nTraces the Layer 3 network path to a destination host while suppressing IP-to-hostname resolution for faster hop output.
Cevap
Matching pairs: ping -f -l 1472 corresponds to testing path MTU with the Don't Fragment flag; nslookup -type=TXT corresponds to querying DNS TXT records; ss -tulpn corresponds to displaying listening TCP/UDP sockets with PIDs without resolving names; traceroute -n corresponds to tracing the Layer 3 path without hostname resolution.
Each utility switch targets a specific diagnostic capability: 'ping -f -l' checks MTU size limits, 'nslookup -type=TXT' retrieves text verification records, 'ss -tulpn' lists listening sockets and process IDs numerically on Linux, and 'traceroute -n' identifies route hops without performing time-consuming reverse DNS lookups.
Adım Adım Çözüm
Anahtar Kavram
Utilizing command-line utilities and flags for specific network troubleshooting diagnostics