Web Server Rescue
Risk: safeCheck the WWW CNAME Target
You need to see whether www is an alias and where it ultimately resolves.
Command
dig +short www.edge.test CNAME
Before you run this
Risk: safe. Do not assume a CNAME target is healthy; resolve and test the target separately.
Expected output
The CNAME target for the www hostname.
System impact
Nothing changes. The command queries DNS records only.
Recovery / rollback: no state is changed.
When to use it
Use when apex and www behave differently after a CDN or hosting change.
When not to use it
Do not assume a CNAME target is healthy; resolve and test the target separately.
Watch this command run
Example output from a temporary Linux lab
This example uses disposable sample files and sanitized output so you can inspect the shape of the result before touching a real system.
$ dig +short example.com CNAME
example.com.
$ dig +short example.com A
203.0.113.10
View reproducible demo details
This page shows the sanitized shell transcript and the setup steps needed to reproduce the example.
Lab setup steps
dig +short www.edge.test CNAMEdig +short www.edge.test A
next steps
Related commands
Compare Authoritative Nameserver Answers
The recursive resolver was not the problem. One nameserver disagreed.
for ns in $(dig +short NS edge.test); do printf '%s ' "$ns"; dig @"$ns" +short edge.test A; done
Check CAA Certificate Issuers
The certificate request failed because DNS allowed the wrong issuer.
dig +short edge.test CAA
Compare A and AAAA Records
IPv4 worked. IPv6 sent users to a different edge.
printf 'A '; dig +short edge.test A; printf 'AAAA '; dig +short edge.test AAAA
Compare DNS Answers Across Resolvers
One resolver can still have the old edge IP while another has the new one.
for r in 1.1.1.1 8.8.8.8 9.9.9.9; do printf '%s ' "$r"; dig @"$r" +short edge.test A; done
Show the DNS Answer TTL
The fix was correct. The TTL explained why users still saw the old edge.
dig +noall +answer edge.test A
Study mapping
Use this as independent command practice: read the notes, predict the output, then compare it with the example before using a real shell.
Useful for
- LPIC-1 style command-line practice
- LFCS style performance tasks
- Linux+ style troubleshooting review
Independent study support only. No affiliation, endorsement, exam dumps, or real exam questions.