Linux_FoundationLinux_Foundation
LFCS · Question #268
LFCS Question #268: Real Exam Question with Answer & Explanation
The correct answer is B: a problem with DNS. A hanging netstat -a command often indicates issues with DNS resolution, as the command attempts to resolve IP addresses to hostnames, which can delay output if DNS servers are unreachable or slow.
Submitted by saadiq_pk· Apr 18, 2026Networking
Question
Suppose that the command netstat -a hangs for a long time without producing output. An administrator might suspect:
Options
- Aa problem with NFS
- Ba problem with DNS
- Ca problem with NIS
- Da problem with routing
- Ethat the netstat daemon has crashed
Explanation
A hanging netstat -a command often indicates issues with DNS resolution, as the command attempts to resolve IP addresses to hostnames, which can delay output if DNS servers are unreachable or slow.
Common mistakes.
- A. A problem with NFS would typically manifest as issues accessing mounted file systems, not as a hang in
netstat -aduring connection listing. - C. A problem with NIS (Network Information Service) would affect user/group lookups across the network, but generally not cause
netstat -ato hang. - D. Routing problems would prevent network connections, but
netstat -awould still display local connections and listening ports, and wouldn't hang specifically on hostname resolution. - E.
netstatis a utility, not a daemon, and therefore does not 'crash' in the sense of a daemon process failing.
Concept tested. netstat troubleshooting and DNS
Reference. https://man7.org/linux/man-pages/man8/netstat.8.html
Topics
#netstat#DNS#Network Troubleshooting#Command Hanging
Community Discussion
No community discussion yet for this question.