
<?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>CCNP Lab Archives - TECHNIG</title>
	<atom:link href="https://www.technig.com/tag/ccnp-lab/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.technig.com/tag/ccnp-lab/</link>
	<description>Gateway for IT Experts and Tech Geeks</description>
	<lastBuildDate>Sun, 13 Feb 2022 08:41:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>

<image>
	<url>https://www.technig.com/wp-content/uploads/2020/04/32x32.png</url>
	<title>CCNP Lab Archives - TECHNIG</title>
	<link>https://www.technig.com/tag/ccnp-lab/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">162720667</site>	<item>
		<title>How to Configure RIPng on Cisco Router?</title>
		<link>https://www.technig.com/configure-ripng-on-cisco-router/</link>
					<comments>https://www.technig.com/configure-ripng-on-cisco-router/#respond</comments>
		
		<dc:creator><![CDATA[Shais]]></dc:creator>
		<pubDate>Tue, 12 Apr 2016 05:30:18 +0000</pubDate>
				<category><![CDATA[CCNP]]></category>
		<category><![CDATA[GNS3]]></category>
		<category><![CDATA[CCNP Lab]]></category>
		<category><![CDATA[CCNP Routing and Switching Lab]]></category>
		<category><![CDATA[GNS3 CCNP Lab]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[RIPng]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=6633</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"></div>
<p>RIPng timer configuration cisco, RIPng timers cisco, RIPng commands, what is RIPng, RIPng timers cisco configuration, Configuring RIPng Packet Tracer, IPv6 RIPng Configuration in packet tracer</p>
<p>The post <a href="https://www.technig.com/configure-ripng-on-cisco-router/">How to Configure RIPng on Cisco Router?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"></div><p>This is a simple guide to configure RIPng on Cisco router using <a href="https://www.technig.com/tag/gns3/" target="_blank" rel="noopener noreferrer">GNS3</a> for CCNP Exam or real word network routing. The Routing Information Protocol (RIP) is a distance-vector routing protocol that uses hop count as a routing metric. RIP is an Interior Gateway Protocol (IGP) most commonly used in smaller networks. RIP for IPv6 also commonly referred as RIPng (Routing Information Protocol Next Generation) is designed to support IPv6 and functions the same way as <strong>RIP-v2</strong> in IPv4. RIPng uses <strong>FF02::9</strong> as the destination address for RIP update messages.</p>
<h2>Configure RIPng on Cisco Router for CCNP Exam</h2>
<p>Have you ever configured <a href="https://www.technig.com/configure-routing-information-protocol/" target="_blank" rel="noopener noreferrer">RIP on Cisco Router</a>? If yes, you know the simplicity or RIP configuration for IPv4. Its simpler as RIP configuration to configure RIPng on Cisco Router or Switch. Just follow this simple step by step guide to configure RIPng using GNS3 or real Cisco Routers.</p>
<figure id="attachment_6746" aria-describedby="caption-attachment-6746" style="width: 840px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/04/Configure-RIPng-Using-GNS3-for-CCNP-RS-Exam-Technig.jpg" rel="attachment wp-att-6746"><img fetchpriority="high" decoding="async" class="wp-image-6746 size-full" src="https://www.technig.com/wp-content/uploads/2016/04/Configure-RIPng-Using-GNS3-for-CCNP-RS-Exam-Technig.jpg" alt="Configure RIPng on Cisco Router using GNS3 for CCNP routing and switching " width="840" height="420" /></a><figcaption id="caption-attachment-6746" class="wp-caption-text">Configure RIPng on Cisco Router using GNS3 for CCNP routing and switching</figcaption></figure>
<p>Le&#8217;s start it using the above RIPng on GNS3 CCNP Lab. Create your own lab within GNS3 and configure RIPng using GNS3.</p>
<p><strong>1.</strong> Try to set IPv6 address to <strong>s4/0</strong> and <strong>s4/1</strong> on R1 router with the below IPv6 address. You can set IPv6 address on Loopback interfaces, but in this Lab, I&#8217;m doing on router serial interfaces.</p>
<pre class="toolbar:2 lang:default decode:true">R1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#ipv6 unicast-routing
R1(config)#interface s4/0
R1(config-if)#ipv6 address 2016::1/128
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#
R1(config)#interface s4/1
R1(config-if)#ipv6 address 2010::1/128
R1(config-if)#no shutdown</pre>
<p><strong>2.</strong> Do the IPv6 configuration on <strong>R2</strong> like the below configuration.</p>
<pre class="toolbar:2 lang:default decode:true">R2#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#ipv6 unicast-routing
R2(config)#interface s4/0
R2(config-if)#ipv6 address 2010::2/128
R2(config-if)#no shutdown
R2(config-if)#exit</pre>
<p><strong>3.</strong> Now configure the R3 router also with the below IPv6 address.</p>
<pre class="toolbar:2 lang:default decode:true">R3#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R3(config)#ipv6 unicast-routing
R3(config)#interface s4/0
R3(config-if)#ipv6 address 2016::2/128
R3(config-if)#no shutdown
R3(config-if)#exit</pre>
<p>The RIPng GNS3 CCNP Lab is ready to configure RIPng and enable routing on this network. Just do it with &#8220;IPv6 rip&#8221; command on serial interfaces.</p>
<p><strong>4.</strong> Enable RIPng on all routers interfaces which we configure them with IPv6.</p>
<p><strong>R1:</strong></p>
<pre class="toolbar:2 lang:default decode:true">R1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#interface s4/0
R1(config-if)#ipv6 rip RIPngTest enable
R1(config-if)#exit

R1(config)#interface s4/1
R1(config-if)#ipv6 rip RIPngTest enable
R1(config-if)#exit</pre>
<p><strong>R2:</strong></p>
<pre class="toolbar:2 lang:default decode:true">R2#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#interface s4/0
R2(config-if)#ipv6 rip RIPngTest enable
R2(config-if)#exit</pre>
<p><strong>R3:</strong></p>
<pre class="toolbar:2 lang:default decode:true ">R3#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R3(config)#interface s4/0
R3(config-if)#ipv6 rip RIPngTest enable
R3(config-if)#exit</pre>
<p>That&#8217;s all. The Lab is ready and RIPng routing is enabled on all routers. Now the routers can communicate with each other. Let&#8217;s test it.</p>
<h3>Test RIPng connectivity with Ping IPv6</h3>
<p>Simply test with ping command from R2 router to R3 router IPv6 address.</p>
<pre class="toolbar:2 lang:default decode:true ">R2#ping ipv6 2016::1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2016::1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/19/32 ms
R2#</pre>
<p>Yes, it ping and replied successfully from R2 to R3.</p>
<p>If you have more routers, try to configure them one by one and then test them. It&#8217;s better to test from PCs and switches also.</p>
<p>Have any question about RIPng? Try to ask us and also help us to make better articles with your suggestions.<br />
<strong>Related Search for GNS3 CCNP Lab: </strong></p>
<p>What is RIPng?<br />
RIPng Configuration GNS3.<br />
RIPng Command.<br />
show ipv6 rip RIPng database.<br />
ipv6 routing not enabled.<br />
ccnp switch labs.<br />
ccnp labs pdf.<br />
gns3 labs for beginners.<br />
gns3 labs for ccnp switch.<br />
ccnp labs free.<br />
gns3 tutorial.</p>
<p>The post <a href="https://www.technig.com/configure-ripng-on-cisco-router/">How to Configure RIPng on Cisco Router?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/configure-ripng-on-cisco-router/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6633</post-id>	</item>
		<item>
		<title>Add SuperPutty for GNS3 Console Applications</title>
		<link>https://www.technig.com/add-superputty-for-gns3-console-applications/</link>
					<comments>https://www.technig.com/add-superputty-for-gns3-console-applications/#comments</comments>
		
		<dc:creator><![CDATA[Shais]]></dc:creator>
		<pubDate>Sun, 01 Mar 2015 17:48:37 +0000</pubDate>
				<category><![CDATA[GNS3]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[CCNA Lab]]></category>
		<category><![CDATA[CCNP Lab]]></category>
		<category><![CDATA[Console Applications]]></category>
		<category><![CDATA[GNS3 Configuration]]></category>
		<category><![CDATA[SuperPutty]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=1533</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="840" height="420" src="https://www.technig.com/wp-content/uploads/2015/03/SuperPutty-for-GNS3-Console-Applications.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="SuperPutty for GNS3 Console Applications" decoding="async" srcset="https://www.technig.com/wp-content/uploads/2015/03/SuperPutty-for-GNS3-Console-Applications.jpg 840w, https://www.technig.com/wp-content/uploads/2015/03/SuperPutty-for-GNS3-Console-Applications-300x150.jpg 300w, https://www.technig.com/wp-content/uploads/2015/03/SuperPutty-for-GNS3-Console-Applications-768x384.jpg 768w" sizes="(max-width: 840px) 100vw, 840px" /></div>
<p>SuperPutty for GNS3 is one of the best Windows GUI Application that allows the PuTTY SSH Client to be open in multiple tabs. There are many tools for control devices in GNS3, but all of them has it&#8217;s own functions and good for basic users. By default GNS3 use the putty for console remote session [&#8230;]</p>
<p>The post <a href="https://www.technig.com/add-superputty-for-gns3-console-applications/">Add SuperPutty for GNS3 Console Applications</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="840" height="420" src="https://www.technig.com/wp-content/uploads/2015/03/SuperPutty-for-GNS3-Console-Applications.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="SuperPutty for GNS3 Console Applications" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2015/03/SuperPutty-for-GNS3-Console-Applications.jpg 840w, https://www.technig.com/wp-content/uploads/2015/03/SuperPutty-for-GNS3-Console-Applications-300x150.jpg 300w, https://www.technig.com/wp-content/uploads/2015/03/SuperPutty-for-GNS3-Console-Applications-768x384.jpg 768w" sizes="(max-width: 840px) 100vw, 840px" /></div><p><a href="https://code.google.com/p/superputty/wiki/SuperPutty" target="_blank" rel="noopener noreferrer">SuperPutty</a> for GNS3 is one of the best Windows GUI Application that allows the PuTTY SSH Client to be open in multiple tabs. There are many tools for control devices in GNS3, but all of them has it&#8217;s own functions and good for basic users. By default GNS3 use the putty for console remote session which open a window separably for each device. See the screenshot of GNS3 using Putty.</p>
<figure id="attachment_1537" aria-describedby="caption-attachment-1537" style="width: 1278px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/GNS-Diagram.jpg"><img decoding="async" class="wp-image-1537 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/GNS-Diagram.jpg" alt="GNS Diagram Using Putty " width="1278" height="915" srcset="https://www.technig.com/wp-content/uploads/2015/03/GNS-Diagram.jpg 1278w, https://www.technig.com/wp-content/uploads/2015/03/GNS-Diagram-300x215.jpg 300w, https://www.technig.com/wp-content/uploads/2015/03/GNS-Diagram-768x550.jpg 768w, https://www.technig.com/wp-content/uploads/2015/03/GNS-Diagram-1024x733.jpg 1024w" sizes="(max-width: 1278px) 100vw, 1278px" /></a><figcaption id="caption-attachment-1537" class="wp-caption-text">GNS Diagram Using Putty</figcaption></figure>
<h2>SuperPutty for GNS3</h2>
<p>Let&#8217;s add SuperPuty fro GNS3 and see what makes SuperPutty better than others. The below list is SuperPutty features.</p>
<h4>Features:</h4>
<ul style="list-style-type: circle;">
<li style="text-align: justify;">Docking user interface allows personalized workspace and managing multiple PuTTY sessions easy</li>
<li style="text-align: justify;">Export/Import session configuration</li>
<li style="text-align: justify;">Upload files securely using the scp or sftp protocols</li>
<li style="text-align: justify;">Layouts allow for customizing session views</li>
<li style="text-align: justify;">Supports PuTTY session configurations including Private Keys</li>
<li style="text-align: justify;">Supports SSH, RLogin, Telnet and RAW protocols</li>
<li style="text-align: justify;">Supports local shell via MinTTY or puttycyg</li>
<li style="text-align: justify;">Supports KiTTY</li>
</ul>
<p><strong>1.</strong> To add SupperPutty for GNS3, just download the <strong><a href="https://code.google.com/p/superputty/wiki/Downloads?tm=2" target="_blank" rel="noopener noreferrer">SuperPutty</a></strong> and extract all files, then copy all files to the directory where GNS3 has installed.</p>
<figure id="attachment_1538" aria-describedby="caption-attachment-1538" style="width: 574px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/Download-SuperPutty.jpg"><img loading="lazy" decoding="async" class="wp-image-1538 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/Download-SuperPutty.jpg" alt="Download SuperPutty for GNS3" width="574" height="306" srcset="https://www.technig.com/wp-content/uploads/2015/03/Download-SuperPutty.jpg 574w, https://www.technig.com/wp-content/uploads/2015/03/Download-SuperPutty-300x160.jpg 300w" sizes="(max-width: 574px) 100vw, 574px" /></a><figcaption id="caption-attachment-1538" class="wp-caption-text">Download SuperPutty for GNS3</figcaption></figure>
<p><strong>2.</strong> When you copying files, it ask you to replace files. Simply replace the files in the destination folder and close the window. Then go to GNS3 <strong>Preferences</strong> from <strong>Edit</strong> tab to open the <strong>Preference</strong> page.</p>
<figure id="attachment_1539" aria-describedby="caption-attachment-1539" style="width: 1129px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/GNS3-Console-Applications.jpg"><img loading="lazy" decoding="async" class="wp-image-1539 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/GNS3-Console-Applications.jpg" alt="GNS3 Console Applications" width="1129" height="643" srcset="https://www.technig.com/wp-content/uploads/2015/03/GNS3-Console-Applications.jpg 1129w, https://www.technig.com/wp-content/uploads/2015/03/GNS3-Console-Applications-300x171.jpg 300w, https://www.technig.com/wp-content/uploads/2015/03/GNS3-Console-Applications-768x437.jpg 768w, https://www.technig.com/wp-content/uploads/2015/03/GNS3-Console-Applications-1024x583.jpg 1024w" sizes="(max-width: 1129px) 100vw, 1129px" /></a><figcaption id="caption-attachment-1539" class="wp-caption-text">GNS3 Console Applications</figcaption></figure>
<p><strong>3.</strong> On the <strong>preference</strong> page click <strong>Console Applications</strong> tab. From preconfigured consoles select <strong>SuperPutty (Included with GNS3)</strong> and click <strong>Set</strong>. Now the default console application has changed to newly downloaded SuperPutty. Just apply and close all pages and open the console to see the <strong>SuperPutty</strong> with multiple tabs.</p>
<p><strong>Remember</strong> current version of SuperPutty need dot Net framework 3.5 to be installed on your computer. If it&#8217;s not installed on your computer, try to install it from  Windows Features section. Open the Windows Features from control panel or simply type &#8220;<strong>OptionalFeatures</strong>&#8221; on Windows Run and press enter.</p>
<figure id="attachment_1540" aria-describedby="caption-attachment-1540" style="width: 428px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/Turn-Windows-features-on-or-off.jpg"><img loading="lazy" decoding="async" class="wp-image-1540 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/Turn-Windows-features-on-or-off.jpg" alt="Turn Windows features on or off" width="428" height="376" srcset="https://www.technig.com/wp-content/uploads/2015/03/Turn-Windows-features-on-or-off.jpg 428w, https://www.technig.com/wp-content/uploads/2015/03/Turn-Windows-features-on-or-off-300x264.jpg 300w" sizes="(max-width: 428px) 100vw, 428px" /></a><figcaption id="caption-attachment-1540" class="wp-caption-text">Turn Windows features on or off</figcaption></figure>
<p>On the <strong>Windows Features</strong> page, select the .<strong>Net Framework 3.5</strong> and click <strong>OK</strong>. If you don&#8217;t have internet or it&#8217;s time consuming task for downloading, use DISM command tool to install Windows features offline. <a href="https://www.technig.com/how-to-install-windows-features-offline-using-dism/" target="_blank" rel="noopener noreferrer">How to Install Windows Features Offline Using DISM?</a></p>
<figure id="attachment_1543" aria-describedby="caption-attachment-1543" style="width: 1232px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2015/03/Add-SuperPutty-for-GNS3-Console-Applications.jpg"><img loading="lazy" decoding="async" class="wp-image-1543 size-full" src="https://www.technig.com/wp-content/uploads/2015/03/Add-SuperPutty-for-GNS3-Console-Applications.jpg" alt="SuperPutty for GNS3 Console Applications" width="1232" height="676" srcset="https://www.technig.com/wp-content/uploads/2015/03/Add-SuperPutty-for-GNS3-Console-Applications.jpg 1232w, https://www.technig.com/wp-content/uploads/2015/03/Add-SuperPutty-for-GNS3-Console-Applications-300x165.jpg 300w, https://www.technig.com/wp-content/uploads/2015/03/Add-SuperPutty-for-GNS3-Console-Applications-768x421.jpg 768w, https://www.technig.com/wp-content/uploads/2015/03/Add-SuperPutty-for-GNS3-Console-Applications-1024x562.jpg 1024w" sizes="(max-width: 1232px) 100vw, 1232px" /></a><figcaption id="caption-attachment-1543" class="wp-caption-text">SuperPutty for GNS3 Console Applications</figcaption></figure>
<p>Here is the SuperPutty for GNS3 and enjoy using lovely <a href="https://www.technig.com/?s=GNS3" target="_blank" rel="noopener noreferrer">GNS3</a> for networking. Feel free to ask your questions and feedback.</p>
<p>The post <a href="https://www.technig.com/add-superputty-for-gns3-console-applications/">Add SuperPutty for GNS3 Console Applications</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/add-superputty-for-gns3-console-applications/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1533</post-id>	</item>
		<item>
		<title>How to Install GNS3 Network Simulator Step by Step?</title>
		<link>https://www.technig.com/install-gns3-network-simulator/</link>
					<comments>https://www.technig.com/install-gns3-network-simulator/#respond</comments>
		
		<dc:creator><![CDATA[Shais]]></dc:creator>
		<pubDate>Wed, 19 Nov 2014 19:41:59 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[GNS3]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[CCNA Lab]]></category>
		<category><![CDATA[CCNP Lab]]></category>
		<category><![CDATA[Network Simulator]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=166</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"><img width="840" height="420" src="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Install GNS3 Network Simulator" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation.png 840w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation-300x150.png 300w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation-768x384.png 768w" sizes="(max-width: 840px) 100vw, 840px" /></div>
<p>A simple guide to Install GNS3 network simulator, which is an open source graphical network simulator for designing and configuring routers, switches, Firewalls and other network devices. GNS3 is mostly used for simulating network devices and equipment. Now it is the best free network simulator for network devices. http://vimeo.com/109640856 How to Install GNS3 Network Simulator Step [&#8230;]</p>
<p>The post <a href="https://www.technig.com/install-gns3-network-simulator/">How to Install GNS3 Network Simulator Step by Step?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"><img width="840" height="420" src="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Install GNS3 Network Simulator" decoding="async" loading="lazy" srcset="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation.png 840w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation-300x150.png 300w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation-768x384.png 768w" sizes="(max-width: 840px) 100vw, 840px" /></div><p>A simple guide to Install GNS3 network simulator, which is an open source graphical network simulator for designing and configuring routers, switches, Firewalls and other network devices. GNS3 is mostly used for simulating network devices and equipment. Now it is the best free network simulator for network devices.</p>
<p>http://vimeo.com/109640856</p>
<h2>How to Install GNS3 Network Simulator Step by Step</h2>
<p>I try to install it on my PC and explain the process of installation for you to make a Network Lab for Networking and Penetration Testing.</p>
<p>Before install GNS3 network simulator, go to <a href="https://www.gns3.com/">GNS3.net</a> website and download the latest GNS3 for PC , Linux or Mac OS. Here I had downloaded for PC and going to install it on Windows 10. When the download has complete, run the GNS3 setup by double click on Setup file to begin install GNS3 Network simulator.</p>
<p><strong>1.</strong> Click <strong>Next</strong> button in welcome page.</p>
<figure id="attachment_167" aria-describedby="caption-attachment-167" style="width: 521px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/GNS3-1.1-Setup.png"><img loading="lazy" decoding="async" class="wp-image-167 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/GNS3-1.1-Setup.png" alt="GNS3 1.1 Setup" width="521" height="405" srcset="https://www.technig.com/wp-content/uploads/2014/11/GNS3-1.1-Setup.png 521w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-1.1-Setup-300x233.png 300w" sizes="(max-width: 521px) 100vw, 521px" /></a><figcaption id="caption-attachment-167" class="wp-caption-text">GNS3 1.1 Setup</figcaption></figure>
<p><strong>2.</strong> In choose start menu folder page click <strong>Next</strong>.</p>
<figure id="attachment_168" aria-describedby="caption-attachment-168" style="width: 516px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Choose-Start-Menu-Folder.png"><img loading="lazy" decoding="async" class="wp-image-168 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Choose-Start-Menu-Folder.png" alt="GNS3 Choose Start Menu Folder" width="516" height="399" srcset="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Choose-Start-Menu-Folder.png 516w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-Choose-Start-Menu-Folder-300x232.png 300w" sizes="(max-width: 516px) 100vw, 516px" /></a><figcaption id="caption-attachment-168" class="wp-caption-text">GNS3 Choose Start Menu Folder</figcaption></figure>
<p><strong>3.</strong> On the license agreement page click <strong>Next</strong>. It&#8217;s better to read the most important rules of this agreement.</p>
<figure id="attachment_169" aria-describedby="caption-attachment-169" style="width: 517px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/GNS3-License-Agreement.png"><img loading="lazy" decoding="async" class="wp-image-169 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/GNS3-License-Agreement.png" alt="GNS3 License Agreement" width="517" height="401" srcset="https://www.technig.com/wp-content/uploads/2014/11/GNS3-License-Agreement.png 517w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-License-Agreement-300x233.png 300w" sizes="(max-width: 517px) 100vw, 517px" /></a><figcaption id="caption-attachment-169" class="wp-caption-text">GNS3 License Agreement</figcaption></figure>
<p><strong>4.</strong> The Choose Components page shows, which component you want to install. I need all but SolarWinds Response Time and SuperPutty. Click <strong>Next</strong> button to start installation.</p>
<figure id="attachment_170" aria-describedby="caption-attachment-170" style="width: 515px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Choose-component.png"><img loading="lazy" decoding="async" class="wp-image-170 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Choose-component.png" alt="GNS3 Choose components" width="515" height="400" srcset="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Choose-component.png 515w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-Choose-component-300x233.png 300w" sizes="(max-width: 515px) 100vw, 515px" /></a><figcaption id="caption-attachment-170" class="wp-caption-text">GNS3 Choose components</figcaption></figure>
<p><strong>5.</strong> When you see WinPcap Welcome page click <strong>Next</strong>. It&#8217;s the first components of GNS3, and others will be install on you system one by one. The installations are easy, just try to install them like a simple software installation.</p>
<figure id="attachment_171" aria-describedby="caption-attachment-171" style="width: 612px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Welcome-page.png"><img loading="lazy" decoding="async" class="wp-image-171 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Welcome-page.png" alt="WinPcap Welcome page" width="612" height="464" srcset="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Welcome-page.png 612w, https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Welcome-page-300x227.png 300w, https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Welcome-page-86x64.png 86w" sizes="(max-width: 612px) 100vw, 612px" /></a><figcaption id="caption-attachment-171" class="wp-caption-text">WinPcap Welcome page</figcaption></figure>
<p><strong>6.</strong> Press the <strong>I Agree</strong> button to go to next page.</p>
<figure id="attachment_173" aria-describedby="caption-attachment-173" style="width: 520px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-License-agreement.png"><img loading="lazy" decoding="async" class="wp-image-173 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-License-agreement.png" alt="WinPcap License agreement" width="520" height="402" srcset="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-License-agreement.png 520w, https://www.technig.com/wp-content/uploads/2014/11/WinPcap-License-agreement-300x232.png 300w" sizes="(max-width: 520px) 100vw, 520px" /></a><figcaption id="caption-attachment-173" class="wp-caption-text">WinPcap License agreement</figcaption></figure>
<p><strong>7.</strong> On the Installation options page put it by default and click next, When the WinPcap installation has complete hit the Finish.</p>
<p><strong>8.</strong> Now the GNS3 will download and install some components from online repository. It takes time to download and depend to your internet connection speed. Wait until the Wireshark installation start.</p>
<p><strong>9.</strong> Click <strong>Next </strong>on the Wireshark Welcome page.</p>
<figure id="attachment_176" aria-describedby="caption-attachment-176" style="width: 612px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Welcome-page.png"><img loading="lazy" decoding="async" class="wp-image-176 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Welcome-page.png" alt="Wireshark Welcome page" width="612" height="466" srcset="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Welcome-page.png 612w, https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Welcome-page-300x228.png 300w, https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Welcome-page-86x64.png 86w" sizes="(max-width: 612px) 100vw, 612px" /></a><figcaption id="caption-attachment-176" class="wp-caption-text">Wireshark Welcome page</figcaption></figure>
<p><strong>10.</strong> Click <strong>Next</strong> on the License agreement page.</p>
<figure id="attachment_177" aria-describedby="caption-attachment-177" style="width: 520px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-License-agreement.png"><img loading="lazy" decoding="async" class="wp-image-177 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-License-agreement.png" alt="Wireshark License agreement" width="520" height="401" srcset="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-License-agreement.png 520w, https://www.technig.com/wp-content/uploads/2014/11/Wireshark-License-agreement-300x231.png 300w" sizes="(max-width: 520px) 100vw, 520px" /></a><figcaption id="caption-attachment-177" class="wp-caption-text">Wireshark License agreement</figcaption></figure>
<p><strong>11.</strong> Leave the Choose Component page by default and click <strong>Next</strong>. These components are required to work with WireShark.</p>
<figure id="attachment_178" aria-describedby="caption-attachment-178" style="width: 513px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Choose-Component-Page.png"><img loading="lazy" decoding="async" class="wp-image-178 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Choose-Component-Page.png" alt="Wireshark Choose Component Page" width="513" height="396" srcset="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Choose-Component-Page.png 513w, https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Choose-Component-Page-300x232.png 300w" sizes="(max-width: 513px) 100vw, 513px" /></a><figcaption id="caption-attachment-178" class="wp-caption-text">Wireshark Choose Component Page</figcaption></figure>
<p><strong>12.</strong> Click <strong>Next</strong> the Select additional tools page.</p>
<figure id="attachment_179" aria-describedby="caption-attachment-179" style="width: 518px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Select-Additional-Tools.png"><img loading="lazy" decoding="async" class="wp-image-179 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Select-Additional-Tools.png" alt="Wireshark Select Additional Tools" width="518" height="399" srcset="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Select-Additional-Tools.png 518w, https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Select-Additional-Tools-300x231.png 300w" sizes="(max-width: 518px) 100vw, 518px" /></a><figcaption id="caption-attachment-179" class="wp-caption-text">Wireshark Select Additional Tools</figcaption></figure>
<p><strong>13.</strong> On install Location page click <strong>Next</strong>. Leave it by default or select another location to keep the WireShark files.</p>
<figure id="attachment_180" aria-describedby="caption-attachment-180" style="width: 515px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Install-Location.png"><img loading="lazy" decoding="async" class="wp-image-180 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Install-Location.png" alt="Wireshark Install Location" width="515" height="402" srcset="https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Install-Location.png 515w, https://www.technig.com/wp-content/uploads/2014/11/Wireshark-Install-Location-300x234.png 300w" sizes="(max-width: 515px) 100vw, 515px" /></a><figcaption id="caption-attachment-180" class="wp-caption-text">Wireshark Install Location</figcaption></figure>
<p><strong>14.</strong> Deselect the Install WinPcap, because we have install it before and click <strong>Next</strong> to begin installation of Wireshark Network Sniffing Tool.</p>
<figure id="attachment_181" aria-describedby="caption-attachment-181" style="width: 516px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Install-page.png"><img loading="lazy" decoding="async" class="wp-image-181 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Install-page.png" alt="WinPcap Install page" width="516" height="398" srcset="https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Install-page.png 516w, https://www.technig.com/wp-content/uploads/2014/11/WinPcap-Install-page-300x231.png 300w" sizes="(max-width: 516px) 100vw, 516px" /></a><figcaption id="caption-attachment-181" class="wp-caption-text">WinPcap Install page</figcaption></figure>
<p><strong>15.</strong> Click <strong>Next</strong> on the Installation complete page and then hit Finish button to continue. When the GNS3 installation completed, click Next to continue and finalizing the GNS3 installation.</p>
<figure id="attachment_182" aria-describedby="caption-attachment-182" style="width: 518px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation-Complete-page.png"><img loading="lazy" decoding="async" class="wp-image-182 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation-Complete-page.png" alt="GNS3 Installation Complete page" width="518" height="399" srcset="https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation-Complete-page.png 518w, https://www.technig.com/wp-content/uploads/2014/11/GNS3-Installation-Complete-page-300x231.png 300w" sizes="(max-width: 518px) 100vw, 518px" /></a><figcaption id="caption-attachment-182" class="wp-caption-text">GNS3 Installation Complete page</figcaption></figure>
<p><strong>16.</strong> Click <strong>Finish</strong>.</p>
<figure id="attachment_183" aria-describedby="caption-attachment-183" style="width: 519px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/Completing-GNS3-1.1-Setup.png"><img loading="lazy" decoding="async" class="wp-image-183 size-full" src="https://www.technig.com/wp-content/uploads/2014/11/Completing-GNS3-1.1-Setup.png" alt="Completing GNS3 1.1 Setup" width="519" height="398" srcset="https://www.technig.com/wp-content/uploads/2014/11/Completing-GNS3-1.1-Setup.png 519w, https://www.technig.com/wp-content/uploads/2014/11/Completing-GNS3-1.1-Setup-300x230.png 300w" sizes="(max-width: 519px) 100vw, 519px" /></a><figcaption id="caption-attachment-183" class="wp-caption-text">Completing GNS3 1.1 Setup</figcaption></figure>
<p><strong>17.</strong> Finally, welcome to GNS3 on Windows 10. GNS3 installation has been finished successfully. Now you can open the GNS3 and create you network lab for testing <a href="https://www.technig.com/packet-tracer-ccna-practical-labs/" target="_blank" rel="noopener noreferrer">CCNA Certification</a> and CCNP Lab.</p>
<figure id="attachment_6547" aria-describedby="caption-attachment-6547" style="width: 986px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2014/11/Install-GNS3-Network-Simulator-Technig.jpg" rel="attachment wp-att-6547"><img loading="lazy" decoding="async" class="size-full wp-image-6547" src="https://www.technig.com/wp-content/uploads/2014/11/Install-GNS3-Network-Simulator-Technig.jpg" alt="Install GNS3 Network Simulator - Technig" width="986" height="747" /></a><figcaption id="caption-attachment-6547" class="wp-caption-text">Install GNS3 Network Simulator &#8211; Technig</figcaption></figure>
<p><strong>Note:</strong> We have plane to write about CCNA and CCNP exam preparation and real world network devices configuration solutions. Please help us to complete a lean step by step guides to CCNA with GNS3 and CCNP Lab on GNS3.</p>
<p>The post <a href="https://www.technig.com/install-gns3-network-simulator/">How to Install GNS3 Network Simulator Step by Step?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/install-gns3-network-simulator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">166</post-id>	</item>
	</channel>
</rss>
