A system administrator is troubleshooting a hostname resolution issue on a Linux workstation. Users report they cannot connect to an internal intranet site at `app.dev.local`. The administrator executes a diagnostic DNS query using `dig` and receives the following terminal output snippet:
;; QUESTION SECTION:
;app.dev.local. IN A
;; ANSWER SECTION:
app.dev.local. 300 IN CNAME web-server-01.dev.local.
;; AUTHORITY SECTION:
dev.local. 3600 IN NS ns1.dev.local.
The output shows an alias (CNAME) pointing to `web-server-01.dev.local`, but no corresponding IPv4 address (`A` record) is included in the response. Based on this command-line output, which command should the administrator run NEXT to directly query the designated authoritative server `ns1.dev.local` specifically for the missing `A` record of target host `web-server-01.dev.local`?
- dig @ns1.dev.local web-server-01.dev.local ACevap
- Bnslookup -type=CNAME web-server-01.dev.local ns1.dev.local
- Cdig +authoritative app.dev.local web-server-01.dev.local
- Dnetstat -a @ns1.dev.local web-server-01.dev.local:53