<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for \1</title>
	<atom:link href="http://backreference.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://backreference.org</link>
	<description>Capture and remember</description>
	<lastBuildDate>Fri, 03 Feb 2012 08:42:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Tun/Tap interface tutorial by waldner</title>
		<link>http://backreference.org/2010/03/26/tuntap-interface-tutorial/comment-page-1/#comment-24735</link>
		<dc:creator>waldner</dc:creator>
		<pubDate>Fri, 03 Feb 2012 08:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://backreference.org/?p=1189#comment-24735</guid>
		<description>I don&#039;t know if there&#039;s an easy way to do what you want. Perhaps using the TEE target of iptables, but it&#039;s just a wild guess.</description>
		<content:encoded><![CDATA[<p>I don't know if there's an easy way to do what you want. Perhaps using the TEE target of iptables, but it's just a wild guess.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Buildbot in 5 minutes by Dustin Row</title>
		<link>http://backreference.org/2011/10/08/buildbot-in-5-minutes/comment-page-1/#comment-24734</link>
		<dc:creator>Dustin Row</dc:creator>
		<pubDate>Fri, 03 Feb 2012 00:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://backreference.org/?p=3087#comment-24734</guid>
		<description>Thanks for examples! This helps out alot!</description>
		<content:encoded><![CDATA[<p>Thanks for examples! This helps out alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tun/Tap interface tutorial by Nicandro</title>
		<link>http://backreference.org/2010/03/26/tuntap-interface-tutorial/comment-page-1/#comment-24733</link>
		<dc:creator>Nicandro</dc:creator>
		<pubDate>Mon, 30 Jan 2012 14:57:08 +0000</pubDate>
		<guid isPermaLink="false">http://backreference.org/?p=1189#comment-24733</guid>
		<description>Yes I know how tcpdump works :) 
As you suggested it is good just for specific case, I want to be able to select traffic for instance even based on the packet length. That s why I need iptables (mangle / nat), because I have more options in order to split the traffic in more interfaces.

Why do I want to do that? Because when too much traffic is coming, tcpdump may be not able to manage it all. So, by launching more processes of it, with different traffic to monitor, less traffic is lost by the kernel.

tcpdump -i tun1
tcpdump -i tun2
(..)
tcpdump -i tunN

I can open more processes on more cores.

So in my opinion what I should do is to split the traffic in more interfaces. In such a way, I can use the same interfaces for other applications (i.e. snort)

What I wanted to know from you is:
having known that the traffic is coming from and going to the real interface eth0, I want to send a copy of it (selected by filter of iptables) to tun1, tun2, .. tunN.

I saw option of ip route 2 (tee, --gw, .. ) but they dont work. DO you know easier way to suggest?

Sorry for disturbing,
Thanks a lot for your help</description>
		<content:encoded><![CDATA[<p>Yes I know how tcpdump works :)<br />
As you suggested it is good just for specific case, I want to be able to select traffic for instance even based on the packet length. That s why I need iptables (mangle / nat), because I have more options in order to split the traffic in more interfaces.</p>
<p>Why do I want to do that? Because when too much traffic is coming, tcpdump may be not able to manage it all. So, by launching more processes of it, with different traffic to monitor, less traffic is lost by the kernel.</p>
<p>tcpdump -i tun1<br />
tcpdump -i tun2<br />
(..)<br />
tcpdump -i tunN</p>
<p>I can open more processes on more cores.</p>
<p>So in my opinion what I should do is to split the traffic in more interfaces. In such a way, I can use the same interfaces for other applications (i.e. snort)</p>
<p>What I wanted to know from you is:<br />
having known that the traffic is coming from and going to the real interface eth0, I want to send a copy of it (selected by filter of iptables) to tun1, tun2, .. tunN.</p>
<p>I saw option of ip route 2 (tee, --gw, .. ) but they dont work. DO you know easier way to suggest?</p>
<p>Sorry for disturbing,<br />
Thanks a lot for your help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tun/Tap interface tutorial by waldner</title>
		<link>http://backreference.org/2010/03/26/tuntap-interface-tutorial/comment-page-1/#comment-24732</link>
		<dc:creator>waldner</dc:creator>
		<pubDate>Fri, 27 Jan 2012 17:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://backreference.org/?p=1189#comment-24732</guid>
		<description>Sorry, I don&#039;t understand what you&#039;re asking. If you&#039;re using tcpdump, you can specify a specific interface with -i or the special interface &quot;any&quot; which captures traffic on all interfaces (but not in promiscuous mode).
If you want to capture only a certain type of traffic, you can specify filters to tcpdump, for example &lt;code&gt;tcpdump -i eth0 icmp&lt;/code&gt; will capture only ICMP traffic, or &lt;code&gt;tcpdump -i eth0 tcp port 80&lt;/code&gt; will capture (hopefully) only HTTP traffic, etc. The manual page for &lt;b&gt;tcpdump&lt;/b&gt;, or &lt;b&gt;pcap-filter&lt;/b&gt;, provides all the details on the syntax to use for filtering.
Hope this answers your question.</description>
		<content:encoded><![CDATA[<p>Sorry, I don't understand what you're asking. If you're using tcpdump, you can specify a specific interface with -i or the special interface "any" which captures traffic on all interfaces (but not in promiscuous mode).<br />
If you want to capture only a certain type of traffic, you can specify filters to tcpdump, for example <code>tcpdump -i eth0 icmp</code> will capture only ICMP traffic, or <code>tcpdump -i eth0 tcp port 80</code> will capture (hopefully) only HTTP traffic, etc. The manual page for <b>tcpdump</b>, or <b>pcap-filter</b>, provides all the details on the syntax to use for filtering.<br />
Hope this answers your question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tun/Tap interface tutorial by Nicandro</title>
		<link>http://backreference.org/2010/03/26/tuntap-interface-tutorial/comment-page-1/#comment-24731</link>
		<dc:creator>Nicandro</dc:creator>
		<pubDate>Fri, 27 Jan 2012 14:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://backreference.org/?p=1189#comment-24731</guid>
		<description>mmm what I would like to do is to monitor the traffic with tcpdump for example. 
and when I wanna do that, for sure I need to give them an interface, isnt ? 
Ok, when you check some info into the traffic it s better to reduce it somehow just selecting the one you more need to check. In this way the process is less stressed overall when it receives high rate traffic.
Because of that I would like to route traffic incoming from eth0 into two virtual interfaces, the place where I attach a monitoring software, as tshark, tcpdump, etc.
What do you think?</description>
		<content:encoded><![CDATA[<p>mmm what I would like to do is to monitor the traffic with tcpdump for example.<br />
and when I wanna do that, for sure I need to give them an interface, isnt ?<br />
Ok, when you check some info into the traffic it s better to reduce it somehow just selecting the one you more need to check. In this way the process is less stressed overall when it receives high rate traffic.<br />
Because of that I would like to route traffic incoming from eth0 into two virtual interfaces, the place where I attach a monitoring software, as tshark, tcpdump, etc.<br />
What do you think?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

