+[no]tcp
Use [do not use] TCP when querying name servers. The default behavior is to use UDP unless a type any or ixfr=N query is requested, in which case the default is TCP. AXFR queries always use TCP.
+[no]vc
Use [do not use] TCP when querying name servers. This alternate syntax to +[no]tcp is provided for backwards compatibility. The "vc" stands for "virtual circuit".
旧工具将此称为“虚拟电路”(vc)模式:
Windows nslookup(交互模式):
使用 dig 你可以使用
+tcp
.man dig
说:所以两者都
+tcp
做+vc
你想做的事,但+tcp
更清楚你想要做什么。使用我自己挖掘并使用 Wireshark 跟踪流量,我看到
dig google.com @8.8.8.8
使用 UDP 并dig google.com @8.8.8.8 +tcp
使用 TCP。