<?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 on: Bridge wireless cards</title>
	<atom:link href="http://blog.bodhizazen.net/linux/bridge-wireless-cards/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/</link>
	<description>A LAMP in the Samsara</description>
	<lastBuildDate>Tue, 31 Jan 2012 20:20:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: bodhi.zazen</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-4679</link>
		<dc:creator>bodhi.zazen</dc:creator>
		<pubDate>Wed, 25 Jan 2012 16:02:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-4679</guid>
		<description>@Nathan: Glad it worked for you, thank you for the tip.</description>
		<content:encoded><![CDATA[<p>@Nathan: Glad it worked for you, thank you for the tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-4676</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Tue, 24 Jan 2012 21:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-4676</guid>
		<description>This worked perfectly on Debian (squeeze)! The only step I did differently was that I used openvpn to create the tap device:

openvpn --mktun --dev tap0 --user 

Thanks for the info!</description>
		<content:encoded><![CDATA[<p>This worked perfectly on Debian (squeeze)! The only step I did differently was that I used openvpn to create the tap device:</p>
<p>openvpn &#8211;mktun &#8211;dev tap0 &#8211;user </p>
<p>Thanks for the info!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bodhi.zazen</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-4640</link>
		<dc:creator>bodhi.zazen</dc:creator>
		<pubDate>Mon, 09 Jan 2012 22:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-4640</guid>
		<description>@majikins with virt-manager you do not use a tap at all, you configure your network interface via virt-manager and use the bridged option.

Looks something like this : http://www.linux-kvm.com/sites/default/files/virt-manager-bridged.png</description>
		<content:encoded><![CDATA[<p>@majikins with virt-manager you do not use a tap at all, you configure your network interface via virt-manager and use the bridged option.</p>
<p>Looks something like this : <a href="http://www.linux-kvm.com/sites/default/files/virt-manager-bridged.png" rel="nofollow">http://www.linux-kvm.com/sites/default/files/virt-manager-bridged.png</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: majikins</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-4639</link>
		<dc:creator>majikins</dc:creator>
		<pubDate>Mon, 09 Jan 2012 21:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-4639</guid>
		<description>Hi

I&#039;m stuck at step number 6. I use virt-manager to start my kvm&#039;s and not cli.  I can&#039;t seem to figure out how to get the vm to use tap as you have stated.  Please could you provide some guidance? Also tap does not come up automatically on restart - how do I keep settings?</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I&#8217;m stuck at step number 6. I use virt-manager to start my kvm&#8217;s and not cli.  I can&#8217;t seem to figure out how to get the vm to use tap as you have stated.  Please could you provide some guidance? Also tap does not come up automatically on restart &#8211; how do I keep settings?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Research group digest &#8211; ulno.net</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-3262</link>
		<dc:creator>Research group digest &#8211; ulno.net</dc:creator>
		<pubDate>Tue, 05 Apr 2011 01:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-3262</guid>
		<description>[...] How to connect guest and host  [...]</description>
		<content:encoded><![CDATA[<p>[...] How to connect guest and host  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dlh</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-2830</link>
		<dc:creator>dlh</dc:creator>
		<pubDate>Mon, 17 Jan 2011 21:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-2830</guid>
		<description>FWIW, with Ubuntu 10.10, and qemu (think its 12.5)...

Could not get the following from your example above to be accepted:
# Allow only related / established connections fron the LAN/internet to the guest
iptables -A FORWARD -i wlan0 -o tap0 -m –state RELATED,ESTABLISHED -j ACCEPT

Did get the two following possibilities accepted:
sudo iptables -A FORWARD -i eth0 -o tap0 -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT

(replaced &quot;-state&quot; with &quot;conntrack --ctstate)

and

sudo iptables -A FORWARD -i eth0 -o tap0 -m state --state ESTABLISHED,RELATED -j ACCEPT

(replaced &quot;-state&quot; with &quot;state --state&quot;)

I haven&#039;t yet obtained access to the outside world from guest, nor access to guest from outside world, only between guest and host.  But I expect I&#039;ll eventually figure it out, or figure out what else I may have done incorrectly.  Also not yet sure what difference, if any, there is between --state and --ctstate...</description>
		<content:encoded><![CDATA[<p>FWIW, with Ubuntu 10.10, and qemu (think its 12.5)&#8230;</p>
<p>Could not get the following from your example above to be accepted:<br />
# Allow only related / established connections fron the LAN/internet to the guest<br />
iptables -A FORWARD -i wlan0 -o tap0 -m –state RELATED,ESTABLISHED -j ACCEPT</p>
<p>Did get the two following possibilities accepted:<br />
sudo iptables -A FORWARD -i eth0 -o tap0 -m conntrack &#8211;ctstate ESTABLISHED,RELATED -j ACCEPT</p>
<p>(replaced &#8220;-state&#8221; with &#8220;conntrack &#8211;ctstate)</p>
<p>and</p>
<p>sudo iptables -A FORWARD -i eth0 -o tap0 -m state &#8211;state ESTABLISHED,RELATED -j ACCEPT</p>
<p>(replaced &#8220;-state&#8221; with &#8220;state &#8211;state&#8221;)</p>
<p>I haven&#8217;t yet obtained access to the outside world from guest, nor access to guest from outside world, only between guest and host.  But I expect I&#8217;ll eventually figure it out, or figure out what else I may have done incorrectly.  Also not yet sure what difference, if any, there is between &#8211;state and &#8211;ctstate&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: linux video tutorials</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-2325</link>
		<dc:creator>linux video tutorials</dc:creator>
		<pubDate>Fri, 12 Nov 2010 06:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-2325</guid>
		<description>LINUX bridge is a way to connect two Ethernet segments together in a protocol independent way.Packets are forwarded based on Ethernet address, rather than IP address (like a router). Since forwarding is done at Layer 2, all protocols can go transparently through a bridge.</description>
		<content:encoded><![CDATA[<p>LINUX bridge is a way to connect two Ethernet segments together in a protocol independent way.Packets are forwarded based on Ethernet address, rather than IP address (like a router). Since forwarding is done at Layer 2, all protocols can go transparently through a bridge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bodhi.zazen</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-2192</link>
		<dc:creator>bodhi.zazen</dc:creator>
		<pubDate>Mon, 11 Oct 2010 22:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-2192</guid>
		<description>You are correct, updated.

Hope it is otherwise working for you.</description>
		<content:encoded><![CDATA[<p>You are correct, updated.</p>
<p>Hope it is otherwise working for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kr0m</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-2191</link>
		<dc:creator>Kr0m</dc:creator>
		<pubDate>Sat, 09 Oct 2010 20:22:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-2191</guid>
		<description>I think that you forgotten a &quot;0&quot;:
iptables -A FORWARD -i tap0 -o wlan -j ACCEPT --&gt; Wrong
iptables -A FORWARD -i tap0 -o wlan0 -j ACCEPT --&gt; Correct</description>
		<content:encoded><![CDATA[<p>I think that you forgotten a &#8220;0&#8243;:<br />
iptables -A FORWARD -i tap0 -o wlan -j ACCEPT &#8211;&gt; Wrong<br />
iptables -A FORWARD -i tap0 -o wlan0 -j ACCEPT &#8211;&gt; Correct</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jaymzter</title>
		<link>http://blog.bodhizazen.net/linux/bridge-wireless-cards/comment-page-1/#comment-1055</link>
		<dc:creator>jaymzter</dc:creator>
		<pubDate>Thu, 17 Sep 2009 04:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=504#comment-1055</guid>
		<description>this worked for my VMware installation as well. Super job!</description>
		<content:encoded><![CDATA[<p>this worked for my VMware installation as well. Super job!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

