<?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"
	>
<channel>
	<title>Comments on: Part 1 of Dynamips External Cloud Interface on Linux</title>
	<atom:link href="http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/</link>
	<description>Cisco, Networking - CCIE #23347</description>
	<pubDate>Fri, 12 Mar 2010 00:59:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: blindhog.net &#187; Linux Bridging for GNS3 LAN communications</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-6112</link>
		<dc:creator>blindhog.net &#187; Linux Bridging for GNS3 LAN communications</dc:creator>
		<pubDate>Mon, 18 Jan 2010 19:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-6112</guid>
		<description>[...] with Josh Atterbury&#8217;s posts: &#8216;Dynamips External Cloud Interface on Linux &#8211; Part1 and [...]</description>
		<content:encoded><![CDATA[<p>[...] with Josh Atterbury&#8217;s posts: &#8216;Dynamips External Cloud Interface on Linux &#8211; Part1 and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mihwar</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-5526</link>
		<dc:creator>mihwar</dc:creator>
		<pubDate>Thu, 17 Dec 2009 06:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-5526</guid>
		<description>Dinamips doesn't understand device type "Cloud". But why?

...
sudo dynagen labs/eigrp/sample.net 
Reading configuration file...

Shutdown in progress...
Shutdown completed.
*** Warning:  unknown device type: Cloud
*** Warning:  ignoring unknown config item: connections = Corp:f0/0:NIO_tap:lin_cis_tap
...</description>
		<content:encoded><![CDATA[<p>Dinamips doesn&#8217;t understand device type &#8220;Cloud&#8221;. But why?</p>
<p>&#8230;<br />
sudo dynagen labs/eigrp/sample.net<br />
Reading configuration file&#8230;</p>
<p>Shutdown in progress&#8230;<br />
Shutdown completed.<br />
*** Warning:  unknown device type: Cloud<br />
*** Warning:  ignoring unknown config item: connections = Corp:f0/0:NIO_tap:lin_cis_tap<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javier</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-5447</link>
		<dc:creator>Javier</dc:creator>
		<pubDate>Mon, 14 Dec 2009 15:44:10 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-5447</guid>
		<description>Hi.

I followed this steps:

1. Configure the bridge

#!/bin/bash

Tap="tap0"
Interfaz="eth3"
Ip_puente="192.168.1.30"
Puerta_puente="192.168.1.1"
Puente="br0"
Mascara=24

#####################################################################

# Create a new bridge interface
brctl addbr $Puente
ip l s dev $Puente up
# Create a tap interface
tunctl -t $Tap
ip l s dev $Tap up
# Add $Tap and $Interfaz to the bridge group
brctl addif $Puente $Tap
brctl addif $Puente $Interfaz
ifconfig $Interfaz 0.0.0.0 promisc
ip a a $Ip_puente/$Mascara dev $Puente
ip r a default via $Puerta_puente

2. Configure router and cloud in GNS3:

autostart = False
[localhost:7200]
    workingdir = /tmp
    udp = 10000
    [[7200]]
        image = /home/datos/master/RT/pract/ios/c7200-advipservicesk9-mz.124-4.T1.bin
        ghostios = True
    [[ROUTER R0]]
        console = 2000
        slot1 = PA-2FE-TX
    [[ROUTER R1]]
        console = 2002
        slot1 = PA-2FE-TX
        f1/0 = nio_linux_eth:tap0
        x = -106.0
        y = -123.0
[GNS3-DATA]
    [[Cloud C1]]
        x = -156.5
        y = 38.0
        connections = R1:f1/0:nio_linux_eth:tap0

3. Try ping from router:

Router#ping 192.168.1.30

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.30, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)

4. Try ping from my pc:

d610:/tmp# ping 192.168.1.200
PING 192.168.1.200 (192.168.1.200) 56(84) bytes of data.
From 192.168.1.30 icmp_seq=2 Destination Host Unreachable
From 192.168.1.30 icmp_seq=3 Destination Host Unreachable
From 192.168.1.30 icmp_seq=4 Destination Host Unreachable
From 192.168.1.30 icmp_seq=5 Destination Host Unreachable

When I capture packages with wireshark I notice that my virtual router (MAC address ca:02:17:76:00:1c) sent packagest to my virtual bridge (MAC address 
00:16:6f:a9:ad:3c), but gets no reply:

SOURCE                  DESTINATION     Protocol Info
ca:02:17:76:00:1c	Intel_a9:ad:3c	0x0800	IP

Some help? 

Thanks</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p>I followed this steps:</p>
<p>1. Configure the bridge</p>
<p>#!/bin/bash</p>
<p>Tap=&#8221;tap0&#8243;<br />
Interfaz=&#8221;eth3&#8243;<br />
Ip_puente=&#8221;192.168.1.30&#8243;<br />
Puerta_puente=&#8221;192.168.1.1&#8243;<br />
Puente=&#8221;br0&#8243;<br />
Mascara=24</p>
<p>#####################################################################</p>
<p># Create a new bridge interface<br />
brctl addbr $Puente<br />
ip l s dev $Puente up<br />
# Create a tap interface<br />
tunctl -t $Tap<br />
ip l s dev $Tap up<br />
# Add $Tap and $Interfaz to the bridge group<br />
brctl addif $Puente $Tap<br />
brctl addif $Puente $Interfaz<br />
ifconfig $Interfaz 0.0.0.0 promisc<br />
ip a a $Ip_puente/$Mascara dev $Puente<br />
ip r a default via $Puerta_puente</p>
<p>2. Configure router and cloud in GNS3:</p>
<p>autostart = False<br />
[localhost:7200]<br />
    workingdir = /tmp<br />
    udp = 10000<br />
    [[7200]]<br />
        image = /home/datos/master/RT/pract/ios/c7200-advipservicesk9-mz.124-4.T1.bin<br />
        ghostios = True<br />
    [[ROUTER R0]]<br />
        console = 2000<br />
        slot1 = PA-2FE-TX<br />
    [[ROUTER R1]]<br />
        console = 2002<br />
        slot1 = PA-2FE-TX<br />
        f1/0 = nio_linux_eth:tap0<br />
        x = -106.0<br />
        y = -123.0<br />
[GNS3-DATA]<br />
    [[Cloud C1]]<br />
        x = -156.5<br />
        y = 38.0<br />
        connections = R1:f1/0:nio_linux_eth:tap0</p>
<p>3. Try ping from router:</p>
<p>Router#ping 192.168.1.30</p>
<p>Type escape sequence to abort.<br />
Sending 5, 100-byte ICMP Echos to 192.168.1.30, timeout is 2 seconds:<br />
&#8230;..<br />
Success rate is 0 percent (0/5)</p>
<p>4. Try ping from my pc:</p>
<p>d610:/tmp# ping 192.168.1.200<br />
PING 192.168.1.200 (192.168.1.200) 56(84) bytes of data.<br />
From 192.168.1.30 icmp_seq=2 Destination Host Unreachable<br />
From 192.168.1.30 icmp_seq=3 Destination Host Unreachable<br />
From 192.168.1.30 icmp_seq=4 Destination Host Unreachable<br />
From 192.168.1.30 icmp_seq=5 Destination Host Unreachable</p>
<p>When I capture packages with wireshark I notice that my virtual router (MAC address ca:02:17:76:00:1c) sent packagest to my virtual bridge (MAC address<br />
00:16:6f:a9:ad:3c), but gets no reply:</p>
<p>SOURCE                  DESTINATION     Protocol Info<br />
ca:02:17:76:00:1c	Intel_a9:ad:3c	0&#215;0800	IP</p>
<p>Some help? </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-4777</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 19 Nov 2009 02:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-4777</guid>
		<description>Hi Josh,

I followed your tutorial twice but I end up getting the same result. I'm running Ubuntu 9.10 64-bit as Host OS and a vmware vm. When I'm done with all the configuration in this tutorial:

- from my host OS I'm able to ping every device (including the router in my GNS3 lab)
- from my vmware vm I'm able to ping my host OS (br0 ip address) and every other device except the router in my GNS3 lab.
- from my GNS3 lab's router I'm able to ping only the br0 ip address.

I need help.

Thanks in advance for toy help,

Mike.</description>
		<content:encoded><![CDATA[<p>Hi Josh,</p>
<p>I followed your tutorial twice but I end up getting the same result. I&#8217;m running Ubuntu 9.10 64-bit as Host OS and a vmware vm. When I&#8217;m done with all the configuration in this tutorial:</p>
<p>- from my host OS I&#8217;m able to ping every device (including the router in my GNS3 lab)<br />
- from my vmware vm I&#8217;m able to ping my host OS (br0 ip address) and every other device except the router in my GNS3 lab.<br />
- from my GNS3 lab&#8217;s router I&#8217;m able to ping only the br0 ip address.</p>
<p>I need help.</p>
<p>Thanks in advance for toy help,</p>
<p>Mike.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cesar Ghali</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-3466</link>
		<dc:creator>Cesar Ghali</dc:creator>
		<pubDate>Sun, 16 Aug 2009 09:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-3466</guid>
		<description>Dear Josh,

Thanks a lot for this tutorial, I was looking for something like it for almost two weeks.

However, I have a question, is it possible to connect GNS3 to the Internet? The scenario I have contains a router connected to a cloud and this cloud has a tap0 interface that is connected to my real PC. The problem here is if I set the default gateway of the tap0 interface to point to my router I will lose the connection between my PC and the Internet. Is there a solution for this? As an example, can I give the tap0 interface an IP and default gateway which is different then the eth0 IP and default gateway?

Thanks in advance for your help.

Cesar</description>
		<content:encoded><![CDATA[<p>Dear Josh,</p>
<p>Thanks a lot for this tutorial, I was looking for something like it for almost two weeks.</p>
<p>However, I have a question, is it possible to connect GNS3 to the Internet? The scenario I have contains a router connected to a cloud and this cloud has a tap0 interface that is connected to my real PC. The problem here is if I set the default gateway of the tap0 interface to point to my router I will lose the connection between my PC and the Internet. Is there a solution for this? As an example, can I give the tap0 interface an IP and default gateway which is different then the eth0 IP and default gateway?</p>
<p>Thanks in advance for your help.</p>
<p>Cesar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TFTP with GNS3 &#171; juecker.net</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-3095</link>
		<dc:creator>TFTP with GNS3 &#171; juecker.net</dc:creator>
		<pubDate>Fri, 10 Jul 2009 12:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-3095</guid>
		<description>[...] the host computer.  I just didn&#8217;t know how to do it.  So I Google&#8217;d it and found this joshatterbury.com page with some great explanation.  Check out his site for more details.  He has some verification [...]</description>
		<content:encoded><![CDATA[<p>[...] the host computer.  I just didn&#8217;t know how to do it.  So I Google&#8217;d it and found this joshatterbury.com page with some great explanation.  Check out his site for more details.  He has some verification [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradshaw</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-3021</link>
		<dc:creator>Bradshaw</dc:creator>
		<pubDate>Mon, 06 Jul 2009 02:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-3021</guid>
		<description>Well done.</description>
		<content:encoded><![CDATA[<p>Well done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sephiroth</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-1956</link>
		<dc:creator>Sephiroth</dc:creator>
		<pubDate>Wed, 27 May 2009 02:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-1956</guid>
		<description>Josh,

This is very self explanatory. Thanks a lot for this tutorial. I just moved from Win to Linux and this came very handy to keep working with my voice labs.

Now, I do have access to the internal from my GNS3 labs xD. Thanks in advance fella.

PS:I have been looking for a nice tutorial how to setup CCM on VMware using Ubuntu instead Windows(which is the way I used to do it). I found some posts related to it but is not what I'm looking for. Do you have any idea Chief?

Thanks,
Sephiroth</description>
		<content:encoded><![CDATA[<p>Josh,</p>
<p>This is very self explanatory. Thanks a lot for this tutorial. I just moved from Win to Linux and this came very handy to keep working with my voice labs.</p>
<p>Now, I do have access to the internal from my GNS3 labs xD. Thanks in advance fella.</p>
<p>PS:I have been looking for a nice tutorial how to setup CCM on VMware using Ubuntu instead Windows(which is the way I used to do it). I found some posts related to it but is not what I&#8217;m looking for. Do you have any idea Chief?</p>
<p>Thanks,<br />
Sephiroth</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cosmin</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-1192</link>
		<dc:creator>Cosmin</dc:creator>
		<pubDate>Wed, 15 Apr 2009 07:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-1192</guid>
		<description>Great howto...spend a few hours understending it, but then it works. It's almost a week since i was looking for a way to bridge those interfaces in ubuntu...tx a lot.</description>
		<content:encoded><![CDATA[<p>Great howto&#8230;spend a few hours understending it, but then it works. It&#8217;s almost a week since i was looking for a way to bridge those interfaces in ubuntu&#8230;tx a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: certifiedIT.pro - How to allow communication from Dynamips virtual Cisco routers to the LAN and the Internet.</title>
		<link>http://joshatterbury.com/tutorials/configuring-dynamips-to-use-a-linux-tap-interface/#comment-799</link>
		<dc:creator>certifiedIT.pro - How to allow communication from Dynamips virtual Cisco routers to the LAN and the Internet.</dc:creator>
		<pubDate>Fri, 06 Feb 2009 07:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=7#comment-799</guid>
		<description>[...] work like a charm. I can&#8217;t take full credit here. I learned how to use the tap interface from joshatterbury.com and simplified his method in this article. Good [...]</description>
		<content:encoded><![CDATA[<p>[...] work like a charm. I can&#8217;t take full credit here. I learned how to use the tap interface from joshatterbury.com and simplified his method in this article. Good [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
