<?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>GlobalConfig.net&#187; TipTorials</title>
	<atom:link href="http://globalconfig.net/category/tiptorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://globalconfig.net</link>
	<description>Studying for Network Certifications</description>
	<lastBuildDate>Sat, 24 Dec 2011 02:07:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Learning IPv6 with QEMU</title>
		<link>http://globalconfig.net/routingandswitching/learning-ipv6-with-qemu/</link>
		<comments>http://globalconfig.net/routingandswitching/learning-ipv6-with-qemu/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 17:37:42 +0000</pubDate>
		<dc:creator>Brandon Carroll, CCIE #23837</dc:creator>
				<category><![CDATA[Routing and Switching]]></category>
		<category><![CDATA[TipTorials]]></category>
		<category><![CDATA[GNS3]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://globalconfig.net/?p=1979</guid>
		<description><![CDATA[If you&#8217;re just getting started with IPv6 you may want to mock it up in a lab with a few hosts. While it&#8217;s pretty easy to grab a windows machine running Windows 7 and lab it up you can do this in an even more controlled environment. Here is what you need: GNS3 and your [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re just getting started with IPv6 you may want to mock it up in a lab with a few hosts.  While it&#8217;s pretty easy to grab a windows machine running Windows 7 and lab it up you can do this in an even more controlled environment.  Here is what you need:</p>

<p><li><a href="http://www.gns3.net/">GNS3</a> and your own IOS image</li> 
<li><a href="http://www.4shared.com/get/vy0CTqce/linux-microcore-341.html;jsessionid=D5BF79366274E0B99F7F557F2CB076CB.dc209">a QEMU image.</a> that has IPv6 Support</li></p>

<p>To get started download the QEMU image and throw it somewhere on your hard drive.  I put mine in my Virtual Machines folder.</p>

<p>Next, install GNS3 if you haven&#8217;t already done so.</p>

<p>Now the fun part- get GNS3 to talk to QEMU.  From my testing there seems to be an issue with this when running it on a Mac.  When you define where the QEMU image is located and then test it fails unless it&#8217;s already running.  So what I have done here is started the Qemuwrapper from the CLI.  Then I go back and load it up in GNS3:</p>

<p><pre>terminal$:
terminal$:/Applications/GNS3.app/Contents/Resources/qemuwrapper/qemuwrapper.py
Qemu Emulator Wrapper (version 0.3.2)
Copyright (c) 2007-2009 Thomas Pani &amp; Jeremy Grossmann</p>

<p>Unpacking pemu binary.
Qemu TCP control server started (port 10525).
</pre></p>

<p>Here you can see I have now tested QEMU:</p>

<p><a href="http://globalconfig.net/wp-content/uploads/2011/03/FULL/QEMU1.jpg"><img src="http://globalconfig.net/wp-content/uploads/2011/03/QEMU1.jpg" alt="QEMU1" title="QEMU1.jpg" border="0" width="600" height="540" /></a></p>

<p>And you can also see the QEMU image that I have defined:</p>

<p><a href="http://globalconfig.net/wp-content/uploads/2011/03/FULL/QEMU2.jpg"><img src="http://globalconfig.net/wp-content/uploads/2011/03/QEMU2.jpg" alt="QEMU2" title="QEMU2.jpg" border="0" width="600" height="540" /></a></p>

<p>Our next step is to build the topology.  Mine is simple, two QEMU hosts and 1 router.</p>

<p><a href="http://globalconfig.net/wp-content/uploads/2011/03/FULL/QEMU3.jpg"><img src="http://globalconfig.net/wp-content/uploads/2011/03/QEMU3.jpg" alt="QEMU3" title="QEMU3.jpg" border="0" width="600" height="181" /></a></p>

<p>Now we can configure the router for simple IPv6 Connectivity:</p>

<p><pre>
!
ipv6 unicast-routing
!
interface FastEthernet0/0
 no ip address
 duplex auto
 speed auto
 ipv6 address 2001:DB8:1::1/64
 ipv6 enable
 ipv6 nd prefix 2001:DB8:1::/64
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 ipv6 address 2001:DB8:2::1/64
 ipv6 enable
 ipv6 nd prefix 2001:DB8:2::/64
!
interface FastEthernet1/0
 no ip address
 shutdown
 duplex auto
 speed auto
!
</pre></p>

<p>Because we have configured the Neighbor Discovery Prefix the QEMU hosts should obtain an IPv6 address via Router Advertisements.  On the QEMU host we did nothing and looking at the interface shows us that we have an IPv6 address with the same prefix:</p>

<p><a href="http://globalconfig.net/wp-content/uploads/2011/03/FULL/QEMU4.jpg"><img src="http://globalconfig.net/wp-content/uploads/2011/03/QEMU4.jpg" alt="QEMU4" title="QEMU4.jpg" border="0" width="600" height="190" /></a></p>

<p>The last 64-bits of the host address was configured using EUI-64 formatting.  This, for the most part, takes the Mac address of the interface and inserts FFFE in the middle of it.</p>

<p>Now we should be able to ping the gateway:</p>

<p><a href="http://globalconfig.net/wp-content/uploads/2011/03/FULL/QEMU5.jpg"><img src="http://globalconfig.net/wp-content/uploads/2011/03/QEMU5.jpg" alt="QEMU5" title="QEMU5.jpg" border="0" width="600" height="161" /></a></p>

<p>So far so good!  We should also be able to verify the second QEMU host has an IPv6 address:</p>

<p><a href="http://globalconfig.net/wp-content/uploads/2011/03/FULL/QEMU6.jpg"><img src="http://globalconfig.net/wp-content/uploads/2011/03/QEMU6.jpg" alt="QEMU6" title="QEMU6.jpg" border="0" width="600" height="161" /></a></p>

<p>Now for the real test.  Let&#8217;s see if this router is going to route traffic as a default gateway for the two QEMU hosts.  From QEMU Host 2 we ping QEMU host 1:</p>

<p><a href="http://globalconfig.net/wp-content/uploads/2011/03/FULL/QEMU7.jpg"><img src="http://globalconfig.net/wp-content/uploads/2011/03/QEMU7.jpg" alt="QEMU7" title="QEMU7.jpg" border="0" width="600" height="195" /></a></p>

<h2>Conclusion</h2>

<p>As you can tell configuring a simple IPv6 lab is not difficult to do.  For further testing you could add a few routers and configure IPv6 Routing Protocols like OSPFv3 and EIGRP and the pass IPv6 traffic between the QEMU hosts.  Alternatively you could configure an IPv4 backbone and use VTI interfaces to encrypt the IPv6 traffic over the IPv4 network.  There is a ton that you can do, and it&#8217;s really not that difficult.</p>

<h3 class='related_post_title'>Related Posts:</h3>

<ul class='related_post'><li><a href='http://globalconfig.net/routingandswitching/configuring-ospfv3-for-ipv6-not-a-big-leap/' title='Configuring OSPFv3 for IPv6&#8230;Not a big leap.'>Configuring OSPFv3 for IPv6&#8230;Not a big leap.</a></li><li><a href='http://globalconfig.net/security/configuring-site-to-site-ipsec-for-ipv6-using-static-vti/' title='Configuring Site-to-Site IPsec for IPv6 using Static VTI'>Configuring Site-to-Site IPsec for IPv6 using Static VTI</a></li><li><a href='http://globalconfig.net/study-tips/a-new-version-of-gns3-has-been-released/' title='A New Version of GNS3 has been released.'>A New Version of GNS3 has been released.</a></li><li><a href='http://globalconfig.net/links/link-round-up-09242010/' title='Link Round-Up 09/24/2010'>Link Round-Up 09/24/2010</a></li><li><a href='http://globalconfig.net/ccie-routing-and-switching/ipv6-is-it-more-secure-than-ipv4/' title='IPv6- Is it more Secure than IPv4'>IPv6- Is it more Secure than IPv4</a></li></ul>
]]></content:encoded>
			<wfw:commentRss>http://globalconfig.net/routingandswitching/learning-ipv6-with-qemu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bypassing NAT on Cisco ASA 8.2</title>
		<link>http://globalconfig.net/security/bypassing-nat-on-cisco-asa-8-2/</link>
		<comments>http://globalconfig.net/security/bypassing-nat-on-cisco-asa-8-2/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 13:00:18 +0000</pubDate>
		<dc:creator>Brandon Carroll, CCIE #23837</dc:creator>
				<category><![CDATA[CCIE Security]]></category>
		<category><![CDATA[Cisco ASA]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[TipTorials]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[NAT]]></category>
		<category><![CDATA[nat 0]]></category>
		<category><![CDATA[nat exemption]]></category>

		<guid isPermaLink="false">http://globalconfig.net/?p=1899</guid>
		<description><![CDATA[There are a number of ways to bypass NAT using a Cisco ASA. I suppose the easiest way would be to leave it alone when you install it and don&#8217;t use NAT at all. Why? Because the ASA does not have NAT-Control enabled by default. This means that you can configure you ASA just as [...]]]></description>
			<content:encoded><![CDATA[<p>There are a number of ways to bypass NAT using a Cisco ASA.  I suppose the easiest way would be to leave it alone when you install it and don&#8217;t use NAT at all.  Why?  Because the ASA does not have NAT-Control enabled by default.  This means that you can configure you ASA just as you would a router and exchange routes between the inside and outside.  Aside from needing an ACL on the outside interface, applied in an inbound direction, you should notice that if functions very similar to what you would expect a router to function like.</p>

<p>However, for most of us, this is not feasible.  Because of the use of RFC 1918 addresses we are required to use NAT or PAT when we make connections to the Internet.  Still situations may arise where you have NAT configured but for some reason you need to bypass it.  Here are a few examples of how to do this along with the terminology that  these methods are referred to in ASA 8.2.</p>

<h2>Identity NAT</h2>

<p>When you use Identity NAT the connections can only be originated by the address that&#8217;s covered in the statement.  Of course, return traffic will be allowed, but you can&#8217;t originate an outside connection into the address in the NAT statement.</p>

<p>Here is how you configure it:</p>

<p><pre><code>ASA1(config)# nat (inside) 0 10.1.1.0 255.255.255.0</code></pre></p>

<p>In this code example you can initiate an outbound connection from addresses on the 10.1.1.0/24 subnet and it will not translate the source.</p>

<h2>Static Identity NAT</h2>

<p>A Static Identity NAT Translation is always active.  This means that a connection can be initiated into this address, provided there is an ACL inbound on the lower security-level interface that permits the connection.  You can also originate connections from the address defined in the statement for outbound connections and the ASA will not Translate the source.</p>

<h3 class='related_post_title'>Related Posts:</h3>

<ul class='related_post'><li><a href='http://globalconfig.net/ccie-security/last-day-to-enroll-in-6-week-ccie-security-evening-class/' title='Last Day to Enroll in 6-Week CCIE Security Evening Class.'>Last Day to Enroll in 6-Week CCIE Security Evening Class.</a></li><li><a href='http://globalconfig.net/ccie-security/ccie-security-bootcamp-topology/' title='CCIE Security Bootcamp Topology'>CCIE Security Bootcamp Topology</a></li><li><a href='http://globalconfig.net/security/ikev1-aggressive-mode-vs-ikev1-main-mode/' title='IKEv1 Aggressive Mode vs. IKEv1 Main Mode'>IKEv1 Aggressive Mode vs. IKEv1 Main Mode</a></li><li><a href='http://globalconfig.net/general/new-video-comparing-crypto-maps-and-vtis-part-1/' title='New Video: Comparing Crypto Maps and VTI&#8217;s Part 1'>New Video: Comparing Crypto Maps and VTI&#8217;s Part 1</a></li><li><a href='http://globalconfig.net/security/firewalls/configuring-etherchannel-on-cisco-asa-8-4/' title='Configuring Etherchannel on Cisco ASA 8.4'>Configuring Etherchannel on Cisco ASA 8.4</a></li></ul>
]]></content:encoded>
			<wfw:commentRss>http://globalconfig.net/security/bypassing-nat-on-cisco-asa-8-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Preview Commands Before Sending!</title>
		<link>http://globalconfig.net/security/quick-tip-preview-commands-before-sending/</link>
		<comments>http://globalconfig.net/security/quick-tip-preview-commands-before-sending/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 22:49:41 +0000</pubDate>
		<dc:creator>Brandon Carroll, CCIE #23837</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[TipTorials]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[ASDM]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://globalconfig.net/?p=1556</guid>
		<description><![CDATA[If you are like me, then you prefer the CLI over slower GUI based configuration tools. However, at times it&#8217;s required that you learn or use the ASDM interface (CCNP Security Tests on it). So, here is a quick tip that may prove to be useful for those of you who wish to connect the [...]]]></description>
			<content:encoded><![CDATA[<p>If you are like me, then you prefer the CLI over slower GUI based configuration tools.  However, at times it&#8217;s required that you learn or use the ASDM interface (CCNP Security Tests on it).  So, here is a quick tip that may prove to be useful for those of you who wish to connect the dots with this GUI interface and what you would usually do on the CLI.
<pre><strong>warning:</strong> you may also learn something from what ASDM configures on the CLI.</pre></p>

<h2>Step 1</h2>

<p>In The Tools Menu of ASDM Select Preferences :
<img title="ASDM Pref.jpg" src="http://globalconfig.net/wp-content/uploads/2010/10/ASDM-Pref.jpg" border="0" alt="ASDM Pref.jpg" width="509" height="483" /></p>

<h2>Step 2</h2>

<p>Next Select the Check Box &#8220;Preview commands before sending to the CLI&#8221; and then click &#8220;OK&#8221;.
<img src="http://globalconfig.net/wp-content/uploads/2010/10/ASDM-Pref-preview.jpg" alt="ASDM Pref-preview.jpg" title="ASDM Pref-preview.jpg" border="0" width="590" height="545" /></p>

<h2>Step 3</h2>

<p>Make a few changes to the configuration and apply them.  At this point you should see the changes that you have made via the GUI in CLI format.
<img src="http://globalconfig.net/wp-content/uploads/2010/10/ASDM-Pref-preview-send1.jpg" alt="ASDM Pref-preview-send.jpg" title="ASDM Pref-preview-send.jpg" border="0" width="600" height="457" /></p>

<h2>Wrap-up</h2>

<p>While the GUI can certainly be annoying at times there are hidden gems in it that can be beneficial at times.</p>

<h3 class='related_post_title'>Related Posts:</h3>

<ul class='related_post'><li><a href='http://globalconfig.net/security/ikev1-aggressive-mode-vs-ikev1-main-mode/' title='IKEv1 Aggressive Mode vs. IKEv1 Main Mode'>IKEv1 Aggressive Mode vs. IKEv1 Main Mode</a></li><li><a href='http://globalconfig.net/security/firewalls/configuring-etherchannel-on-cisco-asa-8-4/' title='Configuring Etherchannel on Cisco ASA 8.4'>Configuring Etherchannel on Cisco ASA 8.4</a></li><li><a href='http://globalconfig.net/security/bypassing-nat-on-cisco-asa-8-2/' title='Bypassing NAT on Cisco ASA 8.2'>Bypassing NAT on Cisco ASA 8.2</a></li><li><a href='http://globalconfig.net/security/configuring-site-to-site-ipsec-for-ipv6-using-static-vti/' title='Configuring Site-to-Site IPsec for IPv6 using Static VTI'>Configuring Site-to-Site IPsec for IPv6 using Static VTI</a></li><li><a href='http://globalconfig.net/security/dealing-with-security-policies/' title='Dealing With Security Policies'>Dealing With Security Policies</a></li></ul>
]]></content:encoded>
			<wfw:commentRss>http://globalconfig.net/security/quick-tip-preview-commands-before-sending/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNS3 setup and outside connections with VoIP example</title>
		<link>http://globalconfig.net/general-information/gns3-setup-and-outside-connections/</link>
		<comments>http://globalconfig.net/general-information/gns3-setup-and-outside-connections/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 05:52:26 +0000</pubDate>
		<dc:creator>Brandon Carroll, CCIE #23837</dc:creator>
				<category><![CDATA[General Information]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[TipTorials]]></category>

		<guid isPermaLink="false">http://www.ascoltablogs.com/?p=1133</guid>
		<description><![CDATA[I don&#8217;t want to write another guide to setup GNS3, there is a great tutorial which (in my opinion) covers all necessary steps. I just want to summarize a few things which may shorten the time to get a router in GNS3 to run, make it talk via the ethernet of your PC and connect [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t want to write another guide to setup GNS3, there is a great tutorial which (in my opinion) covers all necessary steps. I just want to summarize a few things which may shorten the time to get a router in GNS3 to run, make it talk via the ethernet of your PC and connect to a physical router. Further I added an example for some simple VoIP configs to make a CME (with an 79xx phone registered) in the virtual router talk to a FXS interface (analog phone) on another router.</p>

<p>First of all you need to install GNS3, which in turn takes the necessary steps to install the underlying dynamips. Special thanks for this excellent work goes to the folks around the dynamips and GNS3 team. Have a look at the GNS3 site ( <a href="http://www.gns3.net">www.gns3.net</a> ) and download the &#8220;all-in-1&#8243; package. For the installation and initial etup, there is an excellent tutorial here:   <a href="http://sourceforge.net/projects/gns-3/files/GNS3/0.5/GNS3-0.5-tutorial.pdf/download">http://sourceforge.net/projects/gns-3/files/GNS3/0.5/GNS3-0.5-tutorial.pdf/download</a></p>

<p>I am running GNS3 in an XP64 environment on an AM2 platform with 8GB ram. I tried a few different router models and for my part the 2691 router runs rock solid. The 2621XM had its odds and crashed every now and then, but I cannot say what caused this. The downside of the 26xx series is the limited availability of up to date IOS if you want to test new features. Currently 12.4-15(T10) is the newest IOS which does not include some new SIP-related features. For testing and practicing standard VoIP features this will do the job in any case. I&#8217;m using an &#8220;Advanced IP-services&#8221; feature set. If you need to use the newest IOS-T-Versions, you need to simulate a 7200 series router for whichyou can download a 12.4-24(T1) version.</p>

<p>After the installation and initial setup, I just built a simple network with 2 routers (1 virtual and 1 physical) connected to each other via the PC&#8217;s ethernet interface. After starting GNS3, placing a 2691 router and a &#8220;cloud&#8221; symbol on the workspace, my simple network looks like this:</p>

<p><img class="aligncenter size-full wp-image-1134" src="http://www.ascoltablogs.com/wp-content/uploads/2009/10/gns3-1.JPG" alt="gns3-1" width="660" height="521" /></p>

<p>I switched on the display for the interface names. This is why you see the &#8220;nio_gen_eth:&#46;&#8230;&#8221; entry unter the cloud. This is the physical PC interface. Regardless what IP-address the PC-interface has, the router address is independent (f0/0). If the router address is in the same subnet as your PC, you will be able to access the router from your PC.  Lets assume a physical router with its f0/0 interface is reachable from the PC as well and has a FXS-VIC interface 0/1/0. The configuration of R0 (virtual router) and R1 (physical router) could look like this (assuming a very basic H323 connection to make the FXS interface reachable from CME):</p>

<p>R0:
interface FastEthernet0/0
 ip address 192.168.16.3 255.255.255.0
 speed 100
 half-duplex                         &lt;&#8211; we are sharing the PC-port like a HUB
!
dial-peer voice 100 voip
 destination-pattern 1&#8230;                           &lt;&#8211; H323 connection to the physical router
 session target ipv4:192.168.16.100  &lt;&#8211; IP-address of the physical router
!
telephony-service           &lt;&#8211; Switch on CME
 max-ephones 2
 max-dn 5
 ip source-address 192.168.16.3  &lt;- accept registration from IP-Phones at this address
!
!
ephone-dn  1   &lt;&#8211; the DN for the CIPC or 79xx phone
 number 2000
!
ephone  1
 description CME-Phone-1
 mac-address 0000.0000.0001  &lt;&#8211; put the real mac-addres of the phone here
 type CIPC          &lt;&#8211; phone type CIPC, 7940, 7960 etc.
 button  1:1        &lt;&#8211; first line gets DN #1 (2000)
!</p>

<p>If you use a 79xx phone you will also need to get the tftp server address (option 150)handed out to the phone via DHCP. A sample configuration would look like this:</p>

<p>ip dhcp excluded-address 192.168.16.1 192.168.16.150
!
ip dhcp pool IP-Phones
   network 192.168.16.0 255.255.255.0
   default-router 192.168.16.3
   option 150 ip 192.168.16.3</p>

<p>This should let the IP-phone register with the CME. The dial-peer with the destination pattern 1&#8230; will send all dialed numbers with 4 digits starting with 1 to the .100 IP-address. The configuration of R1 with the FXS-port in 0/1/0 will look like this:</p>

<p>R1:</p>

<p>interface FastEthernet0/0
 ip address 192.168.16.100 255.255.255.0
 speed 100
 half-duplex       &lt;&#8211; we are sharing the PC-port like a HUB
!
dial-peer voice 200 voip
 destination-pattern 2&#8230;                     &lt;&#8211; H323 connection to the virtual router
 session target ipv4:192.168.16.3  &lt;&#8211; IP-address of the virtual router
!
dial-peer voice 100 pots
 destination-pattern 1000                &lt;&#8211; DN of the analog phone
 port 0/1/0                                              &lt;&#8211; physical FXS-port</p>

<p> The destination-pattern 1000 assigns DN 1000 to the analog port and is used as CLID on outgoing calls.</p>

<p>This should serve just as a starter configuration. Dive into the VoIP configurations and test any szenario with multiple routers &#8211; the sky is the limit. For demo purposes I connected the physical router with a FXO-port to my landline and so I got a PSTN integration. Further possibilities could be setting up a VPN to one of your routers and register the CIPC on your Laptop via the VPN at the CME&#8230;.. </p>

<p>An integration with UCM will be possible in a similar way. The router needs a Dial-peer pointing to the Callmanager and in turn the Callmanager needs to know a gateway entry with the routers IP-address&#8230;..</p>

<p>by Patrick Geschwindner, Ascolta</p>

<h3 class='related_post_title'>Related Posts:</h3>

<ul class='related_post'><li>No Related Posts</li></ul>
]]></content:encoded>
			<wfw:commentRss>http://globalconfig.net/general-information/gns3-setup-and-outside-connections/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GNS3 (dynamips) and Voice-Labs</title>
		<link>http://globalconfig.net/ccvp-study/gns3-dynamips-and-voice-labs/</link>
		<comments>http://globalconfig.net/ccvp-study/gns3-dynamips-and-voice-labs/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 02:28:14 +0000</pubDate>
		<dc:creator>Brandon Carroll, CCIE #23837</dc:creator>
				<category><![CDATA[CCVP Study]]></category>
		<category><![CDATA[CIPT1]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[TipTorials]]></category>

		<guid isPermaLink="false">http://www.ascoltablogs.com/?p=1123</guid>
		<description><![CDATA[I hear often that it is hard to practice/demo voice related configurations with GNS3. This is only partially true. It is correct that GNS3 cannot substitute Multiservice routers like 28xx etc because the DSP resources cannot be emulated. For using T1/E1 or FXS/FXO connections you need the real hardware interfaces and of course another PBX/router [...]]]></description>
			<content:encoded><![CDATA[<p>I hear often that it is hard to practice/demo voice related configurations with GNS3. This is only partially true.</p>

<p>It is correct that GNS3 cannot substitute Multiservice routers like 28xx etc because the DSP resources cannot be emulated. For using T1/E1 or FXS/FXO connections you need the real hardware interfaces and of course another PBX/router interface to connect your T1 to. If you have a double T1 you could use a T1 x-over to let the router do both ends.</p>

<p>For all other configurations like Dial-peers, translation patterns, SIP-UA configurations, CME, ephone registrations, CUBE etc, GNS3 can do the job. Just an example from my own lab: I have several accounts at SIP-Providers in US and Europe to use with a standard sip-phone like X-Lite. The router can log in this SIP-account and let CME or UCM handle the call. Via this way I provide a local german PSTN-number for my german friends which makes my phones in Minnesota ring. The thing has of course a downside&#8230; they keep forgetting that I am 7h behind, but for this purpose Unity will take the call. </p>

<p>Where is GNS3 now coming into the ballpark? For each router you can specify only one SIP-registrar server, but I like to have all my SIP-accounts registered at the same time to route calls between them. GNS3 can now run the virtual routers, one for each SIP-provider, register your PSTN-numbers and UCM/CME can do the call handling.</p>

<p>by Patrick Geschwindner, Ascolta</p>

<h3 class='related_post_title'>Related Posts:</h3>

<ul class='related_post'><li>No Related Posts</li></ul>
]]></content:encoded>
			<wfw:commentRss>http://globalconfig.net/ccvp-study/gns3-dynamips-and-voice-labs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New GlobalConfig.net eNewsletter Information</title>
		<link>http://globalconfig.net/news/new-globalconfignet-enewsletter-information/</link>
		<comments>http://globalconfig.net/news/new-globalconfignet-enewsletter-information/#comments</comments>
		<pubDate>Fri, 08 May 2009 14:45:39 +0000</pubDate>
		<dc:creator>Brandon Carroll, CCIE #23837</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[TipTorials]]></category>
		<category><![CDATA[enewsletter]]></category>
		<category><![CDATA[forms]]></category>

		<guid isPermaLink="false">http://www.globalconfig.net/?p=899</guid>
		<description><![CDATA[For a few days now I have been running a lightbox pop-up for those who have just visited my site.  The popup asks you to sign up for my eNewsletter.  I never really explained it, so here it is: The Campaign will only run until may 15th. After May 15th the eNewsletter popup will no [...]]]></description>
			<content:encoded><![CDATA[<p>For a few days now I have been running a lightbox pop-up for those who have just visited my site.  The popup asks you to sign up for my eNewsletter.  I never really explained it, so here it is:</p>

<ol>
    <li>The Campaign will only run until may 15th.</li>
    <li>After May 15th the eNewsletter popup will no longer appear.</li>
    <li>Those that sign up for the eNewsletter will be enrolled in a drawing for a free signed copy of my Cisco Press book, CCNA Wireless Official Exam Certification Guide. (Drawing on June 1st)</li>
    <li>You will receive a monthly newsletter filled with tips and tricks to help in your certification program.</li>
    <li>You will get a special, &#8220;sneak peek,&#8221; of an upcoming publication soon to be released.</li>
</ol>

<p>The Newsletter will cover tips for CCNA to CCIE level topics and will be sent once a month.  The content in the newsletter will not be the same content you find here on the blog.</p>

<p>Well thats about it.  If you missed the popup and wish to subscribe you can use the form on this page.</p>

<script type="text/javascript" src="http://forms.aweber.com/form/89/641889.js"></script>

<h3 class='related_post_title'>Related Posts:</h3>

<ul class='related_post'><li><a href='http://globalconfig.net/news/heading-for-the-hills/' title='Heading for the Hills'>Heading for the Hills</a></li><li><a href='http://globalconfig.net/news/introducing-the-podcast/' title='Introducing the Podcast'>Introducing the Podcast</a></li><li><a href='http://globalconfig.net/news/hp-introduces-the-hp-expertone-certification-program/' title='HP Introduces the HP ExpertONE Certification Program'>HP Introduces the HP ExpertONE Certification Program</a></li><li><a href='http://globalconfig.net/news/bad-blogger/' title='Bad Blogger!'>Bad Blogger!</a></li><li><a href='http://globalconfig.net/news/change-in-venue/' title='Change in Venue'>Change in Venue</a></li></ul>
]]></content:encoded>
			<wfw:commentRss>http://globalconfig.net/news/new-globalconfignet-enewsletter-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

