<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Explore &#187; remote packet capture</title>
	<atom:link href="https://blog.linuxexplore.com/tag/remote-packet-capture/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.linuxexplore.com</link>
	<description>Exploring Linux</description>
	<lastBuildDate>Mon, 07 Apr 2014 00:30:50 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Remote packet capture using WireShark &amp; tcpdump</title>
		<link>https://blog.linuxexplore.com/2010/05/30/remote-packet-capture-using-wireshark-tcpdump/</link>
		<comments>https://blog.linuxexplore.com/2010/05/30/remote-packet-capture-using-wireshark-tcpdump/#comments</comments>
		<pubDate>Sat, 29 May 2010 19:31:42 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[Remote packet capture using WireShark & tcpdump]]></category>
		<category><![CDATA[Tcpdump how to]]></category>
		<category><![CDATA[Linux Administrator]]></category>
		<category><![CDATA[Linux Howto]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[mkfifo]]></category>
		<category><![CDATA[remote packet capture]]></category>
		<category><![CDATA[rpcap]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshd]]></category>
		<category><![CDATA[tcpdump]]></category>
		<category><![CDATA[wireshark]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=234</guid>
		<description><![CDATA[1. First step is to create a special FIFO file using mkfifo command, where you want to see the packet capture using WireShark. This file will use to read &#38; write simultaneously using WireShark &#38; tcpdump. mkfifo /tmp/packet_capture 2. Second give the following ssh command on your terminal, to start the tcpdump on remote PC.&#8230;]]></description>
				<content:encoded><![CDATA[<p>1. First step is to create a special FIFO file using mkfifo command, where you want to see the packet capture using WireShark. This file will use to read &amp; write simultaneously using WireShark &amp; tcpdump.</p>
<pre>mkfifo /tmp/packet_capture</pre>
<p>2. Second give the following ssh command on your terminal, to start the tcpdump on remote PC.</p>
<pre>ssh hostname_or_ip_of_remote_pc "tcpdump -s 0 -U -n -w - -i eth0 not port 22" 
 &gt; /tmp/packet_capture</pre>
<p>3. Third &amp; last step, give the following command to start the WireShark on your PC, which will read packets from the special FIFO file &#8216;/tmp/packet_capture&#8217; at runtime.</p>
<pre>wireshark -k -i /tmp/packet_capture</pre>
<p>After giving the above command all the packets of remote pc&#8217;s eth0 will be visible on WireShark.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2010/05/30/remote-packet-capture-using-wireshark-tcpdump/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
