<?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>IT Engineer's Blog, Malaysia Life Tech Blog &#187; Cisco</title>
	<atom:link href="http://www.icalvyn.com/category/cisco/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.icalvyn.com</link>
	<description>Your Gateway To IT Engineer Knowledge, Life experience on Malaysia Tech Blog</description>
	<lastBuildDate>Tue, 07 Feb 2012 14:04:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>FIFO and WFQ</title>
		<link>http://www.icalvyn.com/fifo-and-wfq/</link>
		<comments>http://www.icalvyn.com/fifo-and-wfq/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 14:26:31 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=3206</guid>
		<description><![CDATA[Overview of FIFO and WFQ First-in-first-out (FIFO) and weighted fair queuing (WFQ) are the two primary default queuing mechanisms that are implemented on Cisco routers. Despite a number of drawbacks, FIFO is the most-used queuing mechanism and it is supported in all versions of Cisco IOS. WFQ, which dynamically divides available bandwidth by a calculation [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Overview of FIFO and WFQ</strong><br />
First-in-first-out (FIFO) and weighted fair queuing (WFQ) are the two primary default queuing mechanisms that are implemented on Cisco routers. Despite a number of drawbacks, FIFO is the most-used queuing mechanism and it is supported in all versions of Cisco IOS. WFQ, which dynamically divides available bandwidth by a calculation based on the total number of flows and the weight of each given flow, was developed to resolve some of the problems resulting from the use of basic queuing methods, including FIFO, such as queue starvation, delay, and jitter.</p>
<p><img class="aligncenter" src="http://img406.imageshack.us/img406/6537/fifo.jpg" alt="FIFO" /></p>
<p><strong>The FIFO queuing mechanism</strong><br />
FIFO queuing has no classification because all packets belong to the same class. Packets are dropped when the output queue is full – this process is known as tail dropping. The scheduler services packets in the order in which they arrive. The software FIFO queue is basically an extension of the hardware FIFO queue.<span id="more-3206"></span></p>
<p>Although FIFO queuing might be regarded as the fairest queuing mechanism, it has some significant drawbacks:</p>
<ul>
<li>FIFO is extremely unfair when an aggressive flow is contesting with a fragile flow. Aggressive flows send a large number of packets, many of which are dropped. Fragile flows send a modest amount of packets, and most of them are also dropped because the queue is always full due tothe aggressive flow. This type of behavior is called starvation.</li>
<li>Short or long bursts cause a FIFO queue to fill. Packets entering an almost-full queue have to wait a long time before they can be transmitted. At another time, the queue might be empty,causing packets of the same flow to experience almost no delay. Such variation in delay is called jitter.</li>
</ul>
<p>In spite of such drawbacks, FIFO is still the most-used queuing mechanism because of the following benefits:</p>
<ul>
<li>FIFO is simple and fast. Most high-end routers with fast interfaces are not really affected by problems such as starvation and jitter. Furthermore, routers are not capable of complex classification and scheduling when they have to process a large number of packets per second. FIFO is, therefore, the most suitable queuing mechanism on these router platforms.</li>
<li>FIFO is supported • on all platforms.</li>
<li>FIFO queuing is supported in all versions of Cisco IOS.</li>
</ul>
<p>To enable FIFO, you need to disable WFQ, which is automatically enabled on interfaces with less than 2Mbps of bandwidth.</p>
<p><strong>The WFQ queuing mechanism</strong><br />
WFQ was introduced to address the problems associated with other queuing mechanisms. For example, FIFO queuing causes starvation, delay, and jitter, and the PQ queuing mechanism causes starvation of other lower priority classes and suffers from all the problems associated with FIFO within each of the four queues that it uses for prioritization. CQ causes long delays and also suffers from all of FIFO&#8217;s problems within each of the 16 queues that it uses for traffic classification. WFQ was developed to alleviate these problems by</p>
<ul>
<li>having a dedicated queue for each flow – this means there is no starvation, delay, or jitter within the queue</li>
<li>allocating bandwidth fairly and accurately among all flows, which results in minimum scheduling delay and guaranteed service</li>
<li>using IP precedence as weight when allocating bandwidth</li>
</ul>
<p>WFQ uses automatic classification, which means that manually defined classes are not supported. WFQ dropping is not a simple tail dropping process. Instead, WFQ drops the packets of the most aggressive flows. The WFQ scheduler is a simulation of a time-division multiplexing (TDM) system. The bandwidth is fairly distributed to all active flows.</p>
<p>WFQ is supported on most Cisco routers, as well as on Versatile Interface Processors (VIPs). The implementation of WFQ on the VIP differs slightly from its implementation on the majority of Cisco platforms. For example, classification identifies a flow and assigns a queue to the flow, and weight is used for scheduling to give proportionately more bandwidth to flows with a higher IP precedence. In addition, the tail-dropping scheme is improved to drop packets of the most aggressive flows.</p>
<p><strong>Advantages and disadvantages of WFQ queuing</strong><br />
WFQ offers a number of advantages over other queuing mechanisms:</p>
<ul>
<li>it&#8217;s simple to configure, so no manual classification is necessary</li>
<li>it guarantees throughput to all flows</li>
<li>it drops the packets of the most aggressive flows</li>
<li>it&#8217;s supported on most platforms</li>
<li>it&#8217;s supported in all IOS versions</li>
</ul>
<p>Nevertheless, there are also a number of drawbacks associated with WFQ:</p>
<ul>
<li>it&#8217;s not always possible to have one flow per queue</li>
<li>it does not allow manual classification</li>
<li>it cannot provide fixed guarantees</li>
<li>its classification and scheduling mechanisms are complex</li>
</ul>
<p>Despite these drawbacks, WFQ is a useful queuing mechanism, and it is automatically enabled on all interfaces that have a default bandwidth of less than 2 Mbps.</p>
<p>As a summary<br />
First-in-first-out (FIFO) and weighted fair queuing (WFQ) are the two main default queuing mechanisms implemented on Cisco routers. Although FIFO is the fairest queuing mechanism, it has some significant drawbacks in that its use can cause the queuing problems known as starvation, delay, and jitter. Despite this, FIFO is the most suitable queuing mechanism for high-end router platforms that aren&#8217;t seriously affected by these problems. FIFO is supported on all platforms and all versions of Cisco IOS.</p>
<p>Developed to resolve some of the problems resulting from the use of basic queuing methods such as FIFO, WFQ dynamically divides available bandwidth by a calculation based on the total number of flows and the weight of each given flow. Supported on most platforms and on all versions of Cisco<br />
IOS, WFQ has the advantage of being simple to configure. Other benefits include the ability to drop the packets of the most aggressive flows and to guarantee throughput to all flows. However, WFQ also has a number of drawbacks. It does not allow manual classification and it cannot provide fixed<br />
guarantees. Furthermore, its classification and scheduling mechanisms are complex, and it&#8217;s not always possible to have one flow per queue in WFQ.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/fifo-and-wfq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Networks</title>
		<link>http://www.icalvyn.com/computer-networks/</link>
		<comments>http://www.icalvyn.com/computer-networks/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 12:36:50 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=2026</guid>
		<description><![CDATA[One of the primary purposes of a network is to increase productivity by linking computers and computer networks, so that people have easy access to information regardless of differences in time, place, or type of computer system. Components of a network Because companies have adopted networks as part of their business strategy, they typically subdivide [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">One of the primary purposes of a network is to increase productivity by linking computers and computer networks, so that people have easy access to information regardless of differences in time, place, or type of computer system.</p>
<p style="text-align: justify;"><img class="aligncenter" src="http://img524.imageshack.us/img524/5297/cisco4.gif" alt="" /></p>
<p style="text-align: justify;"><strong>Components of a network </strong></p>
<p style="text-align: justify;">Because companies have adopted networks as part of their business strategy, they typically subdivide and map corporate networks to the corporate business structure. In the figure, the network is defined based on the grouping of employees (users) into a main office and various remote access locations.</p>
<p style="text-align: justify;">A main office is a site where everyone is connected via a LAN and where the bulk of corporate information is located. A main office can have hundreds or even thousands of people who depend on network access to do their jobs. It may have several LANs, or it may be a campus that contains several buildings. Because everyone needs access to central resources and information, it is common to see a high-speed backbone in a LAN as well as a data center with high-performance computers or servers and networked applications.</p>
<p style="text-align: justify;">A variety of remote access locations connect to the main office or each other using WAN services as follows:<span id="more-2026"></span></p>
<ul style="text-align: justify;">
<li>In branch offices, smaller groups of people work and connect to each other via a LAN. To connect to the main office, these users must use WAN services such as Integrated Services Digital Network (ISDN). Although some corporate information may be stored at a branch office, it is more likely that branch offices have local network resources, such as printers, but have to access information directly from the main office.</li>
<li>A home office is where individuals are set up to work from their own home. Home office workers most likely require on-demand connections to the main office or a branch office to access information or use network resources such as file servers.</li>
<li>Individuals who are mobile users connect to the main office LAN when they are at the main office, at the branch office, or on the road. Their network access needs are based on where they are located.</li>
</ul>
<p style="text-align: justify;">In order to understand what types of equipment and services to deploy in a network and when to deploy them, it is important to understand the business and user needs. The figure shows how to map an organization&#8217;s business or user requirements to a network.</p>
<p style="text-align: justify;"><img class="aligncenter" src="http://img193.imageshack.us/img193/1531/cisco5.gif" alt="" /></p>
<p style="text-align: justify;"><strong>Computer networks</strong></p>
<p style="text-align: justify;">In this example, the business needs may require LAN connectivity within the campus to interconnect the servers and end-user PCs, and WAN connectivity to connect the campus to the remote branch office and telecommuters. The WAN connection to the remote branch office requires a permanent connection, such as a leased line, and the home office connection requires a dial-up connection, such as ISDN.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/computer-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network Applications</title>
		<link>http://www.icalvyn.com/network-applications/</link>
		<comments>http://www.icalvyn.com/network-applications/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 10:56:47 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=2023</guid>
		<description><![CDATA[Network applications are software programs that run between different computers connected together on a network. Network applications Network applications are software programs that run between different computers connected together on a network. Some of the more common uses of network applications include using a web browser program to find content from the World Wide Web, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Network applications are software programs that run between different computers connected together on a network.</p>
<p style="text-align: justify;"><img class="aligncenter" src="http://img200.imageshack.us/img200/7521/cisco2.gif" alt="" /></p>
<p style="text-align: justify;"><strong>Network applications</strong></p>
<p style="text-align: justify;">Network applications are software programs that run between different computers connected together on a network.</p>
<p style="text-align: justify;">Some of the more common uses of network applications include using a web browser program to find content from the World Wide Web, or using an e-mail program to send e-mails over the Internet.</p>
<p style="text-align: justify;">Network applications are selected based on the type of work that needs to be done. A complete set of application-layer programs is available to interface with the Internet. Each application program type is associated with its own application protocol. Some examples include:<span id="more-2023"></span></p>
<ul style="text-align: justify;">
<li>HTTP is the World-Wide-Web communications protocol used to connect to web servers. Its primary function is to establish a connection with a web server and transmit HTML pages to the client browser.</li>
<li>Post Office Protocol 3 (POP3) is an application-layer protocol supported by e-mail programs for the retrieval of electronic mail. POP3 is a standard e-mail server commonly used on the Internet. It provides a message storage container that holds incoming e-mail until users log on and download their messages.</li>
<li>File Transfer Protocol (FTP) is a simple file utility program for transferring files between remote computers, which also provides for basic user authentication.</li>
<li>Telnet is a remote access application and protocol for connecting to remote computer consoles, which also provides for basic user authentication. Telnet is not a graphical user interface but is command-line driven or character mode only.</li>
<li>Simple Network Management Protocol (SNMP) is used by network management programs for monitoring the network device status and activities.</li>
</ul>
<p style="text-align: justify;">It is important to emphasize that the application layer is just another protocol layer in the OSI model or TCP/IP protocol stack. The programs interface with application layer protocols.</p>
<p style="text-align: justify;"><img class="aligncenter" src="http://img193.imageshack.us/img193/4023/cisco3.gif" alt="" /></p>
<p style="text-align: justify;"><strong>Sending e-mail </strong></p>
<p style="text-align: justify;">E-mail client applications, (such as Eudora, Microsoft Mail, Pegasus, and Netscape Mail) all work with the POP3 protocol. The same principle is true with web browsers. The two most popular web browsers are Microsoft Internet Explorer and Netscape Communicator. The appearance of these two web browser programs is very different, but they both work with the application layer HTTP protocol.</p>
<p style="text-align: justify;">Electronic mail enables you to send messages between connected computers. The procedure for sending an e-mail document involves two separate processes – sending the e-mail to the user&#8217;s post office, which is a computer running the POP3 server software, and delivering the e-mail from that post office to the user&#8217;s e-mail client computer, which is the recipient.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/network-applications/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>DIY Cisco Console Cable</title>
		<link>http://www.icalvyn.com/diy-cisco-console-cable/</link>
		<comments>http://www.icalvyn.com/diy-cisco-console-cable/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 16:05:38 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=1785</guid>
		<description><![CDATA[Do you have any idea how much a pieces of Original Cisco Console Cable? Does DIY Cisco Console Cable cheaper? According to the vendor ,the Original Cisco Console Cable worth approximate RM100 above (60USD++). Usually Cisco console cable only come with each Cisco product you bought, but I found that ebay just sold at around [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have any idea how much a pieces of Original <strong>Cisco Console Cable</strong>? Does DIY Cisco Console Cable cheaper?</p>
<p>According to the vendor ,the Original Cisco Console Cable worth approximate RM100 above (60USD++). Usually Cisco console cable only come with each Cisco product you bought, but I found that ebay just sold at around 5USD to 10USD exclude shipping fees, while local website sold at RM60 above.</p>
<p>Should be those user who bough a lot Cisco switches and router, and they only use few to configure their Cisco device.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://img31.imageshack.us/img31/9531/ciscodiy.jpg" alt="DIY Cisco Console Cable" width="525" /></p>
<p>I was thinking does any <a title="cisco tutorial" href="http://ciscofreak.wordpress.com" target="_blank">Cisco&#8217;s Freak</a> out there custom DIY their own Cisco Console Cable? I guess I am one of the &#8220;freak&#8221; who plan to do it.</p>
<p>Before I get start to DIY Cisco Console Cable, I require to know the arrangement of the cable. <a title="UTP color code" href="http://www.icalvyn.com/utp-cable-aka-network-cable/" target="_blank">Arrangement on the RJ45</a> pin and another end at DB9 port.</p>
<p>Let study on the serial port numbering location 1st (DB9),  and RJ45 numbering location 1st. below are the port number for DB9 connector and RJ45 port number:<span id="more-1785"></span></p>
<p style="text-align: center;"><img class="aligncenter" src="http://img110.imageshack.us/img110/3456/femaleserial.gif" alt="female serial cable" /></p>
<p style="text-align: center;"><strong>DB 9 Port Pin Number</strong></p>
<p style="text-align: center;"><img class="aligncenter" src="http://upload.wikimedia.org/wikipedia/commons/3/36/Rj45plug-8p8c.png" alt="rj45 pin arrangement" /></p>
<p style="text-align: center;"><strong>RJ45 Pin Number</strong></p>
<p>The <strong>color code for Cisco Console Cable</strong> as below:</p>
<p style="text-align: center;">rj45-1 to db9-8</p>
<p style="text-align: center;">rj45-2 <strong></strong>to db9-6</p>
<p style="text-align: center;">rj45-3  to  db9-2</p>
<p style="text-align: center;">rj45-4 to db9-5</p>
<p style="text-align: center;">rj45-5 to db9-5</p>
<p style="text-align: center;">rj45-6 to db9-3</p>
<p style="text-align: center;">rj45-7 to db9-4</p>
<p style="text-align: center;">rj45-8 to db9-7</p>
<p>To confirm the above Cisco Console Cable color code correct, I require to do some verification. I require a Multimeter, mostly I will prefer <strong>tone mode</strong>, which mean the positive (Red) and negative (Black) touch together, will hv beep sound from the multimeter.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://img9.imageshack.us/img9/2016/digital20multimeter06.jpg" alt="multimeter" /></p>
<p>I require a  <strong>mini gender changer</strong>, male to male type, shown as below:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://img13.imageshack.us/img13/4165/db9genderchanger.jpg" alt="db9 male to male changer" /></p>
<p>I connected this mini gender changer to the Cisco Console Cable&#8217;s Serial Port end as shown the picture below:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://img31.imageshack.us/img31/9531/ciscodiy.jpg" alt="DIY Cisco Console Cable" width="525" /></p>
<p>I need to use either 1 end of the multimeter to point to the RJ45&#8242;s Pin 1, and another end touching each pin on the DB9 serial connector until the beep tone occur. Record down which pin is come from RJ45&#8242;s Pin 1 (as above stated, RJ45&#8242;s Pin 1 connected to Db9&#8242;s Pin <img src='http://www.icalvyn.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> </p>
<p>Repeat the same step for RJ45&#8242;s Pin 2 until Pin 8, the result will be as above <strong>Cisco console cable color code</strong>.</p>
<p style="text-align: left;">After get known all the color code, now you require to get a <strong>soldering iron</strong>, and also a <strong>female db9 connector</strong>.<br />
<img class="aligncenter" src="http://img111.imageshack.us/img111/5563/4524462.jpg" alt="solder iron" /></p>
<p style="text-align: left;">
<p style="text-align: center;"><img class="aligncenter" src="http://img29.imageshack.us/img29/7421/172e09201r001.jpg" alt="db9 female connector" width="525" /></p>
<p>Solder the RJ45 cable to the DB9 Connector according to the cisco console cable color code above</p>
<p style="text-align: center;"><img class="aligncenter" src="http://img106.imageshack.us/img106/1259/solderdb9.jpg" alt="" /></p>
<p>You can get variety of db9 connector which come with cover, just like as below. I does not know what this kind of connector call, but it is very convenience just to have 1 pcs of this DB9 to RJ45 connector.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://img205.imageshack.us/img205/6737/ciscoadapt1.jpg" alt="db-9 adapter" /></p>
<p style="text-align: center;"><img class="aligncenter" src="http://img261.imageshack.us/img261/7040/ciscoadapt2.jpg" alt="db-9 adapter" /></p>
<p>If you interested to DIY your own Cisco Console Cable, you can have a try, the above Cisco Colsole Cable color code has been proven correct by me. To ensure all the thing goes smoothly, it is advice to test it your self before you create your own console cable.</p>
<p>Happy &#8220;Do it Your Self&#8221; Cisco Console Cable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/diy-cisco-console-cable/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Basic Networking Terminology</title>
		<link>http://www.icalvyn.com/basic-networking-terminology/</link>
		<comments>http://www.icalvyn.com/basic-networking-terminology/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 16:05:23 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=2020</guid>
		<description><![CDATA[Computer networking, like most industries, has its own jargon, which includes technical terms, abbreviations, and acronyms. Without a good grasp of the terminology, it will be difficult to understand the concepts and processes involved in networking. The following list of terms and their definitions is intended to be a quick reference that defines some of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Computer networking, like most industries, has its own jargon, which includes technical terms, abbreviations, and acronyms. Without a good grasp of the terminology, it will be difficult to understand the concepts and processes involved in networking. The following list of terms and their definitions is intended to be a quick reference that defines some of the most important words, phrases, and acronyms related to computer networking:</p>
<p style="text-align: center;"><img src="http://img20.imageshack.us/img20/9115/network01.jpg" alt="computer networking" /></p>
<ul style="text-align: justify;">
<li>A network interface card (NIC), pronounced &#8220;nick,&#8221; is also called the LAN adapter, or just the network interface. This card typically goes into an ISA, PCI, or PCMCIA (PC card) slot in a computer and connects to the network medium. It then connects to other computers through the network media.</li>
<li>Media refers to the various physical environments through which transmission signals pass. Common network media include twisted-pair, coaxial, and fiber-optic cable, and even the earth&#8217;s atmosphere through which wireless transmission occurs.</li>
<li>A protocol is a set of rules. In the case of a network protocol, it is a set of rules by which computers communicate. The term &#8220;protocol suite&#8221; describes a set of several protocols that perform different functions related to different aspects of the communication process.</li>
<li>Cisco IOS software which runs on Cisco equipment and devices, is the industry-leading and most widely deployed network system software. It delivers intelligent network services for enabling the rapid deployment of Internet applications.</li>
</ul>
<p style="text-align: justify;">Cisco IOS software provides a wide range of functionality, from basic connectivity, security, and network management to technically advanced services. The functionality of Cisco IOS software is the result of a technological evolution. First-generation networking devices could only store and forward data packets.<span id="more-2020"></span></p>
<p style="text-align: justify;">Today, Cisco IOS software can recognize, classify, and prioritize network traffic, optimize routing, support voice and video applications, and much more. Cisco IOS software runs on most Cisco routers and Cisco switches. These network devices carry most of the Internet traffic today.</p>
<ul style="text-align: justify;">
<li>Network operating system (NOS) usually refers to server software such as Windows NT, Windows 2000 Server, Windows Server 2003, Novell NetWare, UNIX, and Linux. The term sometimes refers to the networking components of a client operating system such as Windows 95 or the Macintosh OS.</li>
<li>Connectivity devices refer to several different device types, all of which are used to connect cable segments, connect two or more smaller networks (or subnets) into a larger network, or divide a large network into smaller ones. The term encompasses repeaters, hubs, switches, bridges, and routers.</li>
</ul>
<p style="text-align: justify;">The following are three categories of networks:</p>
<ul style="text-align: justify;">
<li>A local-area network (LAN) is a network that is confined to a limited geographic area. This area can be a room, a floor, a building, or even an entire campus.</li>
<li>A metropolitan-area network (MAN) is a network that is larger in size than a LAN and smaller in size than a WAN. This is a network that covers approximately the area of a large city or metropolitan area.</li>
<li>A wide-area network (WAN) is made up of interconnected LANs. It spans wide geographic areas by using WAN links such as telephone lines or satellite technology to connect computers in different cities, countries, or even different continents.</li>
</ul>
<p style="text-align: justify;">Network structure is described in the following two ways:</p>
<ul style="text-align: justify;">
<li>The logical topology is the path that the signals take from one computer to another. The logical topology may or may not correspond to the physical topology. For instance, a network can be a physical &#8220;star,&#8221; in which each computer connects to a central hub, but inside the hub the data can travel in a circle, making it a logical &#8220;ring.&#8221;</li>
</ul>
<p style="text-align: justify;">The physical topology refers to the layout or physical shape of the network, and includes the topologies in this table.</p>
<p style="text-align: justify;">Bus &#8211; Computers arranged so that cabling goes from one to another in a linear fashion</p>
<p style="text-align: justify;">Ring &#8211; When there are no clear beginning points or endpoints within a topology, forming a circle.</p>
<p style="text-align: justify;">Star &#8211; If the systems &#8220;meet in the middle&#8221; by connecting to a central hub</p>
<p style="text-align: justify;">Mesh &#8211; When multiple redundant connections make pathways to some or all of the endpoints.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/basic-networking-terminology/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Cisco Upgrade Voice Certification Exam</title>
		<link>http://www.icalvyn.com/cisco-upgrade-voice-certification-exam/</link>
		<comments>http://www.icalvyn.com/cisco-upgrade-voice-certification-exam/#comments</comments>
		<pubDate>Mon, 11 May 2009 14:46:43 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=1851</guid>
		<description><![CDATA[After 2 week joining Motorola, I need to get my self to learn more about communication and voice related knowledge. I come across a news from China&#8217;s IT laboratory In recent days, Cisco Study Group of Experts for the Cisco Certified Voice Professional (CCVP) released a new test plan. CCVP: Cisco Unified Call Manager and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">After 2 week joining Motorola, I need to get my self to learn more about communication and voice related knowledge. I come across a news from China&#8217;s IT laboratory</p>
<p style="text-align: justify;">In recent days, Cisco Study Group of Experts for the <strong>Cisco Certified Voice Professional</strong> (CCVP) released a new test plan. CCVP: <strong>Cisco Unified Call Manager</strong> and CCVP: <strong>Cisco Unified Communications Manager</strong>. Originally a simple two divided CCVP section, CCVP: Cisco Unified CallManager and CCVP: Cisco Unified Communications Manager, candidates can choose according to one of their own test cases.</p>
<p style="text-align: justify;">The 2 part of CCVP certification requires candidates to participate in five examinations, three of which are compulsory in both directions, <span id="more-1851"></span>the subjects must be passed the CVOICE Cisco exams, the latest release of the examination number (642-436) This is with the CCVP: Cisco Unified CallManager authentication and releas<!--more-->ed, CCVP certification have been obtained by the people, may choose to attend in July in the old version of CVOICE (642-432) exam, to obtain updates.  Cisco Exam 2 is another quality of service (QoS) 2.2 exam number (642-642) and Cisco&#8217;s failure to deal with the examination, the examination number (642-426).</p>
<p style="text-align: justify;">Cisco Unified CallManager is the unique direction of the examination is the gateway Cisco exam (642-453) and new or old versions of the Cisco IP phone examination, the examination for No. (642-444) and. ?642-445)? (642-445).</p>
<p style="text-align: justify;">Cisco Unified Communications Manager of the examination requirements of the direction of three compulsory examination subjects with two new test, these two new test were: IP Phone 6.0 1 (642-446) and 2 (642-456).</p>
<p style="text-align: justify;">In addition, for all new test, Cisco all laboratory-based simulation training, are available.</p>
<p style="text-align: justify;">&#8220;More than 50,000 worldwide and more than 70% of the world&#8217;s top 500 enterprises to use Cisco Unified Communications Certificate, which requires the current high level of IP telephony has been the people by increasing their own skills.&#8221; Cisco general manager LeJeanne Beliveau-Dunn said in a statement to comment on that. &#8220;CCVP provided to individuals in the field of IP phones and the promotion of play to their potential for career development opportunities.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/cisco-upgrade-voice-certification-exam/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cisco Command Dictionary, Cisco Pedia</title>
		<link>http://www.icalvyn.com/ciscopedia/</link>
		<comments>http://www.icalvyn.com/ciscopedia/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 16:06:23 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=1244</guid>
		<description><![CDATA[I am graduate as an Information System Engineer, which suppose to be a programmer at the moment, but I am not, because I was easily bored with those programming language. In the other way, I am very interest on those short command line, such as ms-dos command line. Ciscopedia , which is a dictionary that [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I am graduate as an <strong>Information System Engineer</strong>, which suppose to be a programmer at the moment, but   I am not, because I was easily bored with those programming language. In the other way, I am very interest on those short command line, such as <a href="http://www.icalvyn.com/ms-dos-command/">ms-dos command line</a>.</p>
<p style="text-align: justify;"><a href="http://www.icalvyn.com/ms-dos-command/"></a><img src="http://img386.imageshack.us/img386/7521/ciscopedia31ioscommanddeu2.jpg" alt="Cisco Command" width="320" height="273" align="right" />Ciscopedia , which is a dictionary that have the collection of cisco command line. This Cisco Pedia contain where, when, why, and how to use the cisco commands. Most of the new Network engineer, or begineer who like to learn Cisco Networking Commands must keep this as their weapon <img src='http://www.icalvyn.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   especially those CCNA,  CCNP, CCIE holder.</p>
<p style="text-align: justify;">In CiscoPedia, the content in this software are very informative, it will shows the <strong>command</strong>, the <strong>mode</strong>, the <strong>syntax</strong>, <strong>syntax description</strong>, <strong>command description</strong>, <strong>examples</strong>, <strong>misconceptions</strong>, and also related command, the most I like will be the examples, because for new network engineer who without much experience, can actually more understanding with the example provide.</p>
<p style="text-align: justify;">Let pick a normal command like &#8220;VLAN&#8221; <span id="more-1244"></span></p>
<blockquote>
<p style="text-align: justify;"><strong>Command: </strong><br />
copy</p>
<p><strong>Mode: </strong><br />
Router#</p>
<p><strong>Syntax: </strong><br />
copy {flash | ftp | nvram | running-config|startup-config | system | tftp} {flash | ftp | nvram | running-config | startup-config | system | tftp}</p>
<p><strong>Syntax Description:</strong><br />
Specify a source filesystem and destination filesystem.</p>
<p><strong>Command Description:</strong><br />
To copy any file from a source to a destination, use the copy EXEC command. Use the /erase option to erase the destination file system before copying.</p>
<p><strong>Example:</strong></p>
<p>Router(config)#copy tftp flash</p>
<p><strong>Misconceptions:</strong><br />
None</p>
<p><strong>Related Commands:</strong><br />
cd<br />
dir<br />
erase<br />
delete</p></blockquote>
<p style="text-align: justify;">You can always get free stuff, software download at iCalvyn.com, but please do remember &#8220;<a href="http://www.icalvyn.com/give-and-take/" target="_blank">give and take</a>&#8220;, appreciate if able to provide me <span style="color: #ff0000;"><strong>a review and link back</strong></span> if you like this Cisco Pedia, cisco command dictionary, or sign up my feed  to get more valuable update.</p>
<p style="text-align: justify;"><strong>CiscoPedia Download Link</strong>: hxxp://rap*idsha*re.com/files/175464175/CiscoPedia_3_0.rar</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/ciscopedia/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Recover Password for Cisco Router</title>
		<link>http://www.icalvyn.com/how-to-recover-password-for-cisco-router/</link>
		<comments>http://www.icalvyn.com/how-to-recover-password-for-cisco-router/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 16:02:39 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=1112</guid>
		<description><![CDATA[While a network administrator forgot the password over the cisco router or switch, you need to reset password for cisco router or recover password for cisco router, this is a common mistaken for a Network Administrator, always forgot the password if long time did not do configuration for the cisco router. how to reset cisco [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">While a network administrator forgot the password over the cisco router or switch, you need to <strong>reset password for cisco router</strong> or <strong>recover password for cisco router</strong>, this is a common mistaken for a Network Administrator, always forgot the password if long time did not do configuration for the cisco router. <strong>how to reset cisco router password</strong>? if you forgot the password to login cisco router?</p>
<p style="text-align: center;"><img class="aligncenter" title="cisco reset password" src="http://img515.imageshack.us/img515/8016/fogotpasswordcopytb5.jpg" alt="" width="525" height="480" /></p>
<blockquote><p>Router&gt;<strong>enable</strong><br />
Password:<br />
Password:<br />
Password:<br />
% Bad secrets</p>
<p>Router&gt;<strong>show version</strong><br />
Cisco IOS Software, 2800 Software (C2800NM-ADVIPSERVICESK9-M), Version 12.4(15)T1, RELEASE SOFTWARE (fc2)<br />
Technical Support: http://www.cisco.com/techsupport<br />
Copyright (c) 1986-2007 by Cisco Systems, Inc.<br />
Compiled Wed 18-Jul-07 06:21 by pt_rel_team</p>
<p>ROM: System Bootstrap, Version 12.1(3r)T2, RELEASE SOFTWARE (fc1)<br />
Copyright (c) 2000 by cisco Systems, Inc.</p>
<p>System returned to ROM by power-on<br />
System image file is &#8220;c2800nm-advipservicesk9-mz.124-15.T1.bin&#8221;</p>
<p>This product contains cryptographic features and is subject to United<br />
States and local country laws governing import, export, transfer and<br />
use. Delivery of Cisco cryptographic products does not imply<br />
third-party authority to import, export, distribute or use encryption.<br />
Importers, exporters, distributors and users are responsible for<br />
compliance with U.S. and local country laws. By using this product you<br />
agree to comply with applicable laws and regulations. If you are unable<br />
to comply with U.S. and local laws, return this product immediately.</p>
<p>A summary of U.S. laws governing Cisco cryptographic products may be found at:</p>
<p>http://www.cisco.com/wwl/export/crypto/tool/stqrg.html</p>
<p>If you require further assistance please contact us by sending email to<br />
export@cisco.com.</p>
<p>cisco 2811 (MPC860) processor (revision 0&#215;200) with 60416K/5120K bytes of memory<br />
Processor board ID JAD05190MTZ (4292891495)<br />
M860 processor: part number 0, mask 49<br />
2 FastEthernet/IEEE 802.3 interface(s)<br />
239K bytes of NVRAM.<br />
62720K bytes of processor board System flash (Read/Write)</p>
<p>Configuration register is <span style="color: #ff0000;"><strong>0&#215;2102</strong></span></p>
<p>Router&gt;</p></blockquote>
<p>Just remember the current cisco router register number &#8220;<strong><span style="color: #ff0000;">2102</span></strong>&#8220;, after that, on and off your cisco router, press <strong>crtl</strong> + <strong>backspace</strong> + <strong>break</strong> to enter the <strong>NVram</strong><span id="more-1112"></span></p>
<blockquote><p>Self decompressing the image :<br />
######################<br />
monitor: command &#8220;boot&#8221; aborted due to user interrupt<br />
rommon 1 &gt; <strong>confreg 2142</strong><br />
rommon 2 &gt; <strong>reset</strong><br />
System Bootstrap, Version 12.1(3r)T2, RELEASE SOFTWARE (fc1)<br />
Copyright (c) 2000 by cisco Systems, Inc.<br />
cisco 2811 (MPC860) processor (revision 0&#215;200) with 60416K/5120K bytes of memory</p>
<p>Self decompressing the image :<br />
#######################</p></blockquote>
<p style="text-align: justify;"><strong>What is Rommon</strong>? it stand for <strong>ROM Monitor</strong>, we require to enter rommon to change the register number, when you enter rommon 1&gt; follow above <strong>code in bold</strong>,  type in <strong>confreg 2142</strong>, After that type in &#8220;<strong>reset</strong>&#8221; or reboot the cisco router, once reboot you are actually enter the router which the <strong>register number is 2142</strong> you can just set the password exactly same with cisco router basic configuration step</p>
<blockquote><p>Router&gt;<strong>ena</strong><br />
Router#<strong>config t</strong><br />
Enter configuration commands, one per line.  End with CNTL/Z.<br />
Router(config)#<strong>ena password newpass</strong><br />
Router(config)#<strong>ena secret newsec</strong><br />
Router(config)#<strong>config-register ox2102</strong><br />
Router(config)#<strong>exit</strong><br />
Router#<strong>sh ver</strong><br />
Cisco IOS Software, 2800 Software (C2800NM-ADVIPSERVICESK9-M), Version 12.4(15)T1, RELEASE SOFTWARE (fc2)<br />
Technical Support: http://www.cisco.com/techsupport<br />
Copyright (c) 1986-2007 by Cisco Systems, Inc.<br />
Compiled Wed 18-Jul-07 06:21 by pt_rel_team</p>
<p>ROM: System Bootstrap, Version 12.1(3r)T2, RELEASE SOFTWARE (fc1)<br />
Copyright (c) 2000 by cisco Systems, Inc.</p>
<p>System returned to ROM by power-on<br />
System image file is &#8220;c2800nm-advipservicesk9-mz.124-15.T1.bin&#8221;</p>
<p>This product contains cryptographic features and is subject to United<br />
States and local country laws governing import, export, transfer and<br />
use. Delivery of Cisco cryptographic products does not imply<br />
third-party authority to import, export, distribute or use encryption.<br />
Importers, exporters, distributors and users are responsible for<br />
compliance with U.S. and local country laws. By using this product you<br />
agree to comply with applicable laws and regulations. If you are unable<br />
to comply with U.S. and local laws, return this product immediately.</p>
<p>A summary of U.S. laws governing Cisco cryptographic products may be found at:</p>
<p>http://www.cisco.com/wwl/export/crypto/tool/stqrg.html</p>
<p>If you require further assistance please contact us by sending email to<br />
export@cisco.com.</p>
<p>cisco 2811 (MPC860) processor (revision 0&#215;200) with 60416K/5120K bytes of memory<br />
Processor board ID JAD05190MTZ (4292891495)<br />
M860 processor: part number 0, mask 49<br />
2 FastEthernet/IEEE 802.3 interface(s)<br />
239K bytes of NVRAM.<br />
62720K bytes of processor board System flash (Read/Write)</p>
<p>Configuration register is 0x<strong><span style="color: #ff0000;">2142</span></strong> (will be 0&#215;2102 at next reload)</p>
<p>Router#<strong>copy run start</strong><br />
Destination filename [startup-config]?<br />
Building configuration&#8230;<br />
[OK]<br />
Router#<strong>reload</strong></p></blockquote>
<p style="text-align: justify;">Reload mean reboot the router, after reboot the router, you can access with the new password already. This is how we reset cisco router password, some said hack cisco router login password , but this is the correct way to recover password for cisco router.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/how-to-recover-password-for-cisco-router/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Calculate Subnet Mask and VLSM</title>
		<link>http://www.icalvyn.com/calculate-subnet-mask-and-vlsm/</link>
		<comments>http://www.icalvyn.com/calculate-subnet-mask-and-vlsm/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 16:05:39 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=797</guid>
		<description><![CDATA[How to calculate Subnet mask, Calculate Variable Length Subnet Mask (VLSM) Few week back I face one confusion when one of our client require to increase their company computer from 200 to 1000&#8242;s PC, in the near future. They require to change the subnet mask in all their computer, server, and manageable switch. The client [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>How to calculate Subnet mask, Calculate Variable Length Subnet Mask (VLSM)<br />
</strong></p>
<p style="text-align: justify;"><img title="subnet mask slot machine" src="http://img377.imageshack.us/img377/7426/slotmachinehi5.jpg" alt="" width="200" height="224" align="right" />Few week back I face one <strong>confusion</strong> when one of our client require to <strong>increase their company computer from 200 to 1000&#8242;s PC</strong>, in the near future. They require to <strong>change the subnet mask</strong> in all their computer, server, and manageable switch. The client currently are using 255.255.<strong>255</strong>.0 for their subnet mask, and require to change it to 255.255.<strong>252</strong>.0. I have to assist them to change the setting in their 3Com manageable switches. I was confuse, why set to 252 instead of 255?</p>
<p style="text-align: justify;">After Re-attend my CCNA class, <a title="CCNA course at Penang" href="http://www.icalvyn.com/ccna-course" target="_blank">CCNA in Penang</a>, I understand how this work and also get the method on <strong>how to calculate subnet mask</strong>.</p>
<p style="text-align: justify;">Normally for class C IP address, we will put the subnet mask as 255.255.255.0, but some other case, they are putting 255.255.255.<strong>128</strong>, 255.255.255.<strong>192</strong>, 255.255.255.<strong>224</strong>&#8230;. So when will use 128 or 192 or 225&#8230;. as your subnet mask?</p>
<p style="text-align: justify;">For example, We use 128 (255.255.255.<strong>128</strong>), when we require not more then 126&#8242;s PC in the network.</p>
<p><span style="text-decoration: underline;">Method to calculate subnet mask</span><span id="more-797"></span><br />
For 255.255.255.<strong>128</strong>, Binary is 11111111.1111111.11111111.<strong><span style="font-family: mceinline;">1</span></strong><span style="font-family: mceinline;">0000000</span>, we categories this binary as ,</p>
<p>NetID: 1 (<span style="font-family: mceinline;">1&#8242;s One</span>)</p>
<p>HostID: 7 (<span style="font-family: mceinline;">7&#8242;s Zero</span>)</p>
<blockquote><p>How many PCs:</p>
<p>Formula: 2^<strong><span style="color: #ff0000;"> HostID</span></strong> -2=<span style="color: #ff0000;"> <strong>PC</strong></span> s</p></blockquote>
<p>How many PC: 2^7-2=126 PC</p>
<blockquote><p>How many Network:</p>
<p>Formula: 2^NetID=Network</p></blockquote>
<p>How many Network: 2^1=2</p>
<p>Below are the table on calculate subnet mask for:</p>
<p>255.255.255.128 (Max 126&#8242;s PC)</p>
<p>255.255.255.192 (Max 62&#8242;s PC)</p>
<p>255.255.255.224 (Max 30&#8242;s PC)</p>
<p>255.255.255. 240 (Max 14&#8242;s PC)</p>
<p>255.255.255. 248 (Max 6&#8242;s PC)</p>
<p>255.255.255. 252 (Max 2&#8242;s PC)</p>
<p>255.255.255. 254 (Serial subnet mask)</p>
<p><span style="text-decoration: underline;"><strong>IT Engineer&#8217;s Life Experience</strong></span><br />
As above situation in my client side, they need 1000 PC&#8217;s, base on the formula above stated,</p>
<blockquote><p>How many PCs:</p>
<p>Formula: 2^ <strong><span style="color: #ff0000;">HostID</span></strong> -2=number of PC</p></blockquote>
<p>2^ <strong><span style="color: #ff0000;">?</span></strong> =1024</p>
<p>2^<strong><span style="color: #ff0000;">10</span></strong> =1024</p>
<p>HostID =10 (10&#8242;s zero)</p>
<p>The binary code for the subnet mask should be :</p>
<p>11111111.11111111.<strong><span style="color: #ff0000;">11111100</span></strong>.00000000</p>
<p>or we use 255.255.<strong><span style="color: #ff0000;">252</span></strong>.0 as the subnet mask in the network that we need 1000&#8242;s PC</p>
<p style="text-align: center;"><img class="aligncenter" title="subnet mask quick reference" src="http://img116.imageshack.us/img116/2039/subnettingcfe8.png" alt="" width="474" height="484" /></p>
<p style="text-align: justify;">Base on the above diagram, <strong>subnet mask quick reference</strong>, you are able to decide what is the subnet mask that suitable your company or your network need.</p>
<p style="text-align: justify;"><img title="Cisco Logo" src="http://img106.imageshack.us/img106/3923/cisco4nl9.jpg" alt="" width="184" height="116" align="right" />Example your computer require 4000&#8242;s PC, refer to the <strong>MAX HOST </strong>above, look for the <strong>4096 Max Host</strong>, and the subnet mask are <strong>255.255.240.0</strong> without <strong>calculate subnet mask</strong> manually.</p>
<p style="text-align: justify;">As above experience on my client side networking setting, now I know how to use suitable setting for the subnet mask in the future. Feel free to download the <strong>subnet mask quick reference</strong> and also copy down the above example on how to calculate subnet mask manually.</p>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/calculate-subnet-mask-and-vlsm/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Packet Tracer Video Tutorial [Part 3]</title>
		<link>http://www.icalvyn.com/packet-tracer-video-tutorial-part-3/</link>
		<comments>http://www.icalvyn.com/packet-tracer-video-tutorial-part-3/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 16:31:15 +0000</pubDate>
		<dc:creator>calvyn</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.icalvyn.com/?p=722</guid>
		<description><![CDATA[After watch the Packet Tracer video tutorial about &#8220;What If&#8221; and &#8220;Visualization&#8221; on Packet Tracer Video Tutorial Part 1; also &#8220;Troubleshooting on Packet Tracer&#8221; and &#8220;Using Packet Tracer in Presentation&#8221; on Packet Tracer VIdeo Tutorial Part 2, this Part 3 video tutorial and also the last 2 tutorial on packet tracer that I am going [...]]]></description>
			<content:encoded><![CDATA[<p>After watch the Packet Tracer video tutorial about &#8220;<strong>What If</strong>&#8221; and &#8220;<strong>Visualization</strong>&#8221; on <a title="Packet Tracer video tutorial" href="http://www.icalvyn.com/packet-tracer-video-tutorial-part-1/" target="_blank">Packet Tracer Video Tutorial Part 1</a>; also &#8220;<strong>Troubleshooting on Packet Tracer</strong>&#8221; and &#8220;<strong>Using Packet Tracer in Presentation</strong>&#8221; on <a title="Packet Tracer video tutorial" href="http://www.icalvyn.com/packet-tracer-video-tutorial-part-2/" target="_blank">Packet Tracer VIdeo Tutorial Part 2</a>, this Part 3 video tutorial and also the last 2 tutorial on packet tracer that I am going to show you on:</p>
<p><strong><strong>Video Tutorial 5 </strong>-  Guiding Student Configurations</strong><br />
<center><br />
<object width="525" height="444"><param name="movie" value="http://www.youtube.com/v/XBRM_Mg9vIk&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/XBRM_Mg9vIk&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="525" height="444"></embed></object><br />
</center></p>
<p style="text-align: justify;">At this chapter, the video tutorial guide the Cisco trainer/instructor to disable the physical and configuration tab (automatic mode), and only allow the student to use the command line to configure the cisco router in the cisco simulation software.</p>
<p style="text-align: justify;">To disable this 2 tab (physical and configuration), just simply go to Option -&gt; Preferences, go to Hide tab, tick the function you would like to hide, and also can go to administrative tab to key in password , and enable it, the password is to protect packet tracer software being changes by the student.</p>
<p><strong><strong>Video Tutorial 6 </strong>-  Configuration Portability</strong><br />
<center><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="525" height="450" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/z0-qrQEDXIM" /><embed type="application/x-shockwave-flash" width="525" height="450" src="http://www.youtube.com/v/z0-qrQEDXIM"></embed></object><br />
</center></p>
<p style="text-align: justify;">This is the last packet tracer video tutorial that I going to shows, in this chapter, shows how we copy the real cisco product command line, and apply all this command over packet tracer by just copy and paste, or vice versa. Meaning that after you success configure the simulation router over the packet tracer, you are able to &#8220;show run&#8221;, copy down all the command line, and paste it into the real router without typing all the command over again.</p>
<p style="text-align: justify;">This make me remember during I follow my senior over client side to configure cisco product, my senior use to have a pen drive<span id="more-722"></span>, and all those cisco coding and command line are store in the notepad file. Once login to client&#8217;s cisco router, just copy the notepad, and paste in the hyper terminal, the command immediate apply after &#8220;copy run start&#8221; (save the setting)</p>
<p style="text-align: justify;">Wanna to try this <a title="Packet Tracer" href="http://www.icalvyn.com/cisco-simulation-software-packet-tracer/" target="_blank">cisco simulation software</a>? You can try to create a simple simulation with just a router, and try to put in the <a title="basic configure command for cisco router" href="http://www.icalvyn.com/cisco-router-basic-configuration/" target="_blank">cisco router basic configuration</a>. Once success the simulation, follow the &#8220;<strong>Configuration Portability</strong>&#8221; above, and paste the coding into your real cisco router. Happy learn on Cisco.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.icalvyn.com/packet-tracer-video-tutorial-part-3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

