<?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 for joshatterbury.com - CCIE #23347</title>
	<atom:link href="http://joshatterbury.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshatterbury.com</link>
	<description>Cisco, Networking - CCIE #23347</description>
	<pubDate>Thu, 11 Mar 2010 09:40:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>Comment on Part 2 of Dynamips External Cloud Interface on Linux by blindhog.net &#187; Linux Bridging for GNS3 LAN communications</title>
		<link>http://joshatterbury.com/tutorials/part-2-of-dynamips-external-cloud-interface-on-linux/#comment-6113</link>
		<dc:creator>blindhog.net &#187; Linux Bridging for GNS3 LAN communications</dc:creator>
		<pubDate>Mon, 18 Jan 2010 19:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=10#comment-6113</guid>
		<description>[...] I discovered that I was able to communicate with every device on the LAN except the actual host machine. While troubleshooting, I finally read the GNS3 FAQ. Then I learned how to solve the problem with Josh Atterbury&#8217;s posts: &#8216;Dynamips External Cloud Interface on Linux &#8211; Part1 and Part2.  [...]</description>
		<content:encoded><![CDATA[<p>[...] I discovered that I was able to communicate with every device on the LAN except the actual host machine. While troubleshooting, I finally read the GNS3 FAQ. Then I learned how to solve the problem with Josh Atterbury&#8217;s posts: &#8216;Dynamips External Cloud Interface on Linux &#8211; Part1 and Part2.  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Part 1 of Dynamips External Cloud Interface on Linux 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>Comment on Part 1 of Dynamips External Cloud Interface on Linux 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>Comment on Part 1 of Dynamips External Cloud Interface on Linux 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>Comment on Part 1 of Dynamips External Cloud Interface on Linux 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>Comment on CCIE SP Technology Workbooks by Lukasz</title>
		<link>http://joshatterbury.com/labs/sp-workbook/#comment-4674</link>
		<dc:creator>Lukasz</dc:creator>
		<pubDate>Mon, 09 Nov 2009 21:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=71#comment-4674</guid>
		<description>Thanks Josh for work that you've done to provide this scenario with configs.
I checked PPPoA scenario and it doesn't work for me. I put the same config as you did but can't negotiate PPP nor receive IP address from Peer.
Could you tell me what image you're using? I use two 7200 routers with c7200-p-mz.124-21.bin image. Thanks for any advises on this.</description>
		<content:encoded><![CDATA[<p>Thanks Josh for work that you&#8217;ve done to provide this scenario with configs.<br />
I checked PPPoA scenario and it doesn&#8217;t work for me. I put the same config as you did but can&#8217;t negotiate PPP nor receive IP address from Peer.<br />
Could you tell me what image you&#8217;re using? I use two 7200 routers with c7200-p-mz.124-21.bin image. Thanks for any advises on this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Guess what arrived! by Alper Sakarya</title>
		<link>http://joshatterbury.com/blog/guess-what-arrived/#comment-3899</link>
		<dc:creator>Alper Sakarya</dc:creator>
		<pubDate>Fri, 09 Oct 2009 22:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=68#comment-3899</guid>
		<description>Very very cool, I only hold ccna, ccna security, wlans and voice, hopefully one day I'll be CCIE as well. 

What a nice of you, I adore it :)</description>
		<content:encoded><![CDATA[<p>Very very cool, I only hold ccna, ccna security, wlans and voice, hopefully one day I&#8217;ll be CCIE as well. </p>
<p>What a nice of you, I adore it <img src='http://joshatterbury.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CCIE SP Technology Workbooks by shivlu jain</title>
		<link>http://joshatterbury.com/labs/sp-workbook/#comment-3832</link>
		<dc:creator>shivlu jain</dc:creator>
		<pubDate>Thu, 01 Oct 2009 16:18:23 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=71#comment-3832</guid>
		<description>thanks for update.</description>
		<content:encoded><![CDATA[<p>thanks for update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Back on the CCIE Train. by Matt</title>
		<link>http://joshatterbury.com/blog/back-on-the-ccie-train/#comment-3662</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 14 Sep 2009 04:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=161#comment-3662</guid>
		<description>No SP lab dates until March next year mate.  Looks like that decision has already been made for you :)</description>
		<content:encoded><![CDATA[<p>No SP lab dates until March next year mate.  Looks like that decision has already been made for you <img src='http://joshatterbury.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CCIE SP Technology Workbooks by IE COD for SP and R&#38;S - TechExams.net IT Certification Forums</title>
		<link>http://joshatterbury.com/labs/sp-workbook/#comment-3545</link>
		<dc:creator>IE COD for SP and R&#38;S - TechExams.net IT Certification Forums</dc:creator>
		<pubDate>Tue, 25 Aug 2009 15:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://joshatterbury.com/?p=71#comment-3545</guid>
		<description>[...] this back to life...Josh Atterbury is posting some of his labs into a workbook for the SP here: joshatterbury.com - CCIE #23347 Blog Archive CCIE SP Technology Workbooks  Hope this helps someone out. I couldnt remember who said they were hitting the SP track.  [...]</description>
		<content:encoded><![CDATA[<p>[...] this back to life&#8230;Josh Atterbury is posting some of his labs into a workbook for the SP here: joshatterbury.com - CCIE #23347 Blog Archive CCIE SP Technology Workbooks  Hope this helps someone out. I couldnt remember who said they were hitting the SP track.  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
