diff options
Diffstat (limited to 'network')
-rw-r--r-- | network/tcpdump.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/network/tcpdump.html b/network/tcpdump.html index 391856f..3b9d1ef 100644 --- a/network/tcpdump.html +++ b/network/tcpdump.html @@ -165,8 +165,11 @@ tcp/udp/icmp Filter for protocol. <h1 id="examples"><a class="header" href="#examples">Examples</a></h1> <h2 id="capture-packets-from-remote-host"><a class="header" href="#capture-packets-from-remote-host">Capture packets from remote host</a></h2> <pre><code class="language-makrdown"># -k: Start capturing immediately. -ssh <host> tcpdump -i <IF> -w - | sudo wireshark -k -i - +ssh <host> tcpdump -i any -w - | sudo wireshark -k -i - </code></pre> +<blockquote> +<p>The <code>any</code> interface is a special keyword to capture traffic on all interfaces.</p> +</blockquote> </main> |