<?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>AOIP - Anything Over IP &#187; Useful Commands</title>
	<atom:link href="http://www.anythingoverip.co.za/category/useful_commands/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anythingoverip.co.za</link>
	<description>Anything Over IP</description>
	<lastBuildDate>Wed, 27 Jul 2011 05:24:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Password Recovery Procedure for Cisco Routers</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/password-recovery-procedure-for-cisco-routers/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/password-recovery-procedure-for-cisco-routers/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 08:00:26 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Live Demos]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=317</guid>
		<description><![CDATA[Cisco offers a password recovery technique for almost every device they have available. In this post, I’m going to cover how to complete a password recovery on a Cisco router. There are 2 things that have to be in place before a password recovery can be done. 1/ Physical access to the router 2/ A [...]]]></description>
			<content:encoded><![CDATA[<p>Cisco offers a password recovery technique for almost every device they have available. In this post, I’m going to cover how to complete a password recovery on a Cisco router.</p>
<p>There are 2 things that have to be in place before a password recovery can be done.<br />
1/ Physical access to the router<br />
2/ A console connection to the router</p>
<p>Here are the steps which need to be followed carefully. Some of these steps if not followed correctly, will wipe your router clean and leave you with a fresh router with NO configuration!</p>
<p>Firstly, make sure the console connection is working and that you are receiving output from the device.<br />
Secondly, reboot the device by doing a power cycle (Turn it off and turn it back on again)<br />
You will have to break the boot sequence by pressing &lt;Ctrl&gt;+C, you may have to do this several times to make sure the router receives your break signals at the correct time. This will force the router in rommon mode. From here you need to type the following</p>
<p><strong>rommon 1&gt; confreg 0&#215;2142<br />
</strong> This sets the routers configuration register to bypass the <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-difference-between-run-and-start-and-how-to-save/">startup-configuration</a> on boot up. The startup-configuration has the passwords in it, so by bypassing it, the router will look brand new and bring us to the “Would you like to enter initial configuration?” screen.<br />
<strong> </strong></p>
<p><strong>rommon 2 &gt; initialize<br />
</strong> This will reload the router<br />
After the router has reloaded, you will be prompted with the “Would you like to enter initial configuration?” which you can bypass by pressing &lt;Ctrl&gt;+C<br />
Continue with the following configuration</p>
<p><strong>Router&gt; enable<br />
</strong><strong> Router# copy start run<br />
</strong><strong> </strong></p>
<p><strong>WARNING!!!!!!!</strong> – DO NOT DO THIS THE WRONG WAY OUT OF HABBIT. Typing copy run start will erase EVERYTHING on the router and you will have to rebuild the router from scratch!!!<br />
This command will copy the Startup-configuration into the <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-difference-between-run-and-start-and-how-to-save/">running-configuration</a>. Since you are already in enable mode, you will not be prompted for a password even though the configuration has now been put back.</p>
<p><strong>AOIP.ORG# conf t<br />
AOIP.ORG (config)# enable password new<br />
AOIP.ORG (config)# enable secret new<br />
</strong> You are now able to change any password that you have forgotten since you are already in enable mode<br />
<strong> </strong></p>
<p><strong>AOIP.ORG (config)# config-register 0&#215;2102<br />
</strong> This puts the routers configuration register back to normal (boot from the startup config)<br />
<strong> </strong></p>
<p><strong>AOIP.ORG (config)# do show ip interface brief<br />
</strong> You will notice that all <a href="http://www.anythingoverip.co.za/tutorials/topic/maintenance-topic-tutorials/interface-status/">interfaces</a> are in an “administratively down” state<br />
<strong> </strong></p>
<p><strong>AOIP.ORG (config)# interface f0/0<br />
AOIP.ORG (config-if)#no shut<br />
AOIP.ORG (config-if)# interface eth 1/0<br />
AOIP.ORG (config-if)# no shut<br />
AOIP.ORG (config-if)# interface bri 0/0<br />
AOIP.ORG (config-if)# no shut<br />
AOIP.ORG (config-if)# exit<br />
AOIP.ORG (config)# exit<br />
AOIP.ORG # show ip int brief<br />
</strong> After no shutting all interfaces, the router is back to normal operations.<br />
<strong> </strong></p>
<p><strong>AOIP.ORG # copy run start<br />
</strong> After all your changes, it’s time to save the new configuration, with the new passwords.<br />
<strong> </strong></p>
<p><strong>AOIP.ORG # reload<br />
</strong> Last but not least, reload the router so the configuration register can take effect. After reboot, you are back to a full working solution and the password has now been reset.</p>
<p>Below are 2 live demo’s. The first is the configuration needed in rommon, the second is after the router has been reloaded from rommon.</p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/password_recovery.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/password_recovery.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/password_recovery2.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/password_recovery2.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/setting-the-enable-password-and-secret-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Setting the enable password and secret on a Cisco device'>Setting the enable password and secret on a Cisco device</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-difference-between-run-and-start-and-how-to-save/' rel='bookmark' title='Permanent Link: The difference between Run and Start and how to save!'>The difference between Run and Start and how to save!</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/snd/decrypting-type-7-passwords-enable-password/' rel='bookmark' title='Permanent Link: Decrypting Type 7 Passwords (enable password)'>Decrypting Type 7 Passwords (enable password)</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/password-recovery-procedure-for-cisco-routers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IP Host</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-host/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-host/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 06:00:14 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=266</guid>
		<description><![CDATA[If you find yourself often connecting to the same devices and are looking a quicker way to telnet to them rather than constantly typing the entire IP address for each one. Or if you have a very large network and find it hard to remember every devices IP address, but you can remember the host [...]]]></description>
			<content:encoded><![CDATA[<p>If you find yourself often connecting to the same devices and are looking a quicker way to telnet to them rather than constantly typing the entire <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP address</a> for each one. Or if you have a very large network and find it hard to remember every devices IP address, but you can remember the host name of the router, then the ‘ip host’ command is a saving grace.</p>
<p>Once defined you can now connect to each device on your network via telnet by just using the host name you have defined and linked to an IP address.</p>
<p>Below is a live demo showing the configuration of three routers with the ‘ip host’ command. </p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/ip_host.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/ip_host.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</span></span></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-domain-lookup/' rel='bookmark' title='Permanent Link: IP Domain-Lookup'>IP Domain-Lookup</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dhcp-on-a-cisco-router/' rel='bookmark' title='Permanent Link: Configuring DHCP on a Cisco router'>Configuring DHCP on a Cisco router</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-ppp-encapsulation/' rel='bookmark' title='Permanent Link: Configuring PPP Encapsulation'>Configuring PPP Encapsulation</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IP Domain-Lookup</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-domain-lookup/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-domain-lookup/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 06:00:20 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Configuration Basics]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=261</guid>
		<description><![CDATA[Often when typing commands in a hurry, or just typing incorrect commands, Cisco routers will try to do a lookup to find out if the invalid command is the name of another device you are trying to connect to. This results in the router displaying ‘Translating “the command”&#8230;domain server (255.255.255.255)’ three times and not accepting [...]]]></description>
			<content:encoded><![CDATA[<p>Often when typing commands in a hurry, or just typing incorrect commands, Cisco routers will try to do a lookup to find out if the invalid command is the name of another device you are trying to connect to. This results in the router displaying ‘Translating “<em>the command</em>”&#8230;domain server (255.255.255.255)’ three times and not accepting any more commands until the lookup has completed and failed. </p>
<p>This feature can be disabled quickly and it’s one of the first commands I will put onto a router when first configuring it.</p>
<p>Below is a live demo demonstrating the problem, and the fix with the command ‘no ip domain-lookup’</p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/ip_domain-lookup.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/ip_domain-lookup.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</span></span></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/' rel='bookmark' title='Permanent Link: The &#8220;do&#8221; command'>The &#8220;do&#8221; command</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dhcp-on-a-cisco-router/' rel='bookmark' title='Permanent Link: Configuring DHCP on a Cisco router'>Configuring DHCP on a Cisco router</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-host/' rel='bookmark' title='Permanent Link: IP Host'>IP Host</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-domain-lookup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using the Pipe &#8216;&#124;&#8217; command</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/using-the-pipe-command/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/using-the-pipe-command/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 06:00:10 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Configuration Basics]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=132</guid>
		<description><![CDATA[Using the Pipe ‘&#124;’ is by far one of the most important things you can learn on a Cisco device. I never really appreciated this command when I started out in Cisco, as it seemed to take me longer to use it, and I didn’t get to see what I was looking for. In hind [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">Using the Pipe ‘|’ is by far one of the most important things you can learn on a Cisco device. I never really appreciated this command when I started out in Cisco, as it seemed to take me longer to use it, and I didn’t get to see what I was looking for. In hind sight this was because I didn’t know how to use it correctly, and I was working on devices that didn’t have very large configuration files.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">When I started working on larger scale enterprise networks, I became very frustrated that I could not find what I was looking for quickly. It was only then that I re-looked at this command and it made me far more efficient at my job. I often work on Cisco devices that over 3000 lines of configuration, so doing a standard ‘sh run’ just isn’t an option.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">The pipe command can be used with any ‘show’ command. In the live demo below, I have demonstrated how it can be used with the ‘show run’ command. In order to use the pipe we need to first look at the syntax required for it and options it supports. The most common values for the pipe are ‘include’ ‘begin’ ‘exclude’. These enable us to use the ‘show’ command and have the device only display lines in the output that include a value, exclude a value, or display everything from the beginning of a value.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">In the below demo I started by using the ‘sh run | in interface’ I have used the shortened version of the commands so the full command would have been “show running-config | include interface’ This has instructed the device to display only lines in the running-config that have the word ‘interface’</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">My second command is ‘sh run | in serial’ which will show me all lines in the configuration that have the word ‘serial’ in them. You will notice that I have used the same command again, but used ‘sh run | in Serial’ with a uppercase ‘S’ to illustrate that the command is case SeNsItIvE and you will notice the results are very different.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">Lastly, I have demonstrated the ‘exclude’ command by issuing ‘sh run | ex interface’ to the device, and you will notice the entire running-config was displayed but every line that had the word ‘interface’ has been removed. </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> </p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/show_with_pipe.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/show_with_pipe.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</span></span></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/' rel='bookmark' title='Permanent Link: The &#8220;do&#8221; command'>The &#8220;do&#8221; command</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/topic/maintenance-topic-tutorials/interface-status/' rel='bookmark' title='Permanent Link: Interface Status'>Interface Status</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-an-ip-address-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Configuring an IP address on a Cisco Device'>Configuring an IP address on a Cisco Device</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/using-the-pipe-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &#8220;do&#8221; command</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 06:00:06 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Configuration Basics]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=128</guid>
		<description><![CDATA[One of the most annoying things I kept doing when I started out in Cisco, was constantly typing ‘show’ commands when in the wrong level of the configuration. By default, Cisco only allows you to do a ‘show’ command when you are in privileged mode (AOIP.ORG#). This can be frustrating when you are multiple levels [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most annoying things I kept doing when I started out in Cisco, was constantly typing ‘show’ commands when in the wrong level of the configuration.</p>
<p>By default, Cisco only allows you to do a ‘show’ command when you are in privileged mode (AOIP.ORG#). This can be frustrating when you are multiple levels deep and just want to see something quickly and don’t want to exit all the way back to the first level to use the ‘show’ command and then get back to the level you were in. Luckily, Cisco introduced the ‘do’ command which can be run from any level of the command line.</p>
<p>For example, if I have just <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-an-ip-address-on-a-cisco-device/">configured an IP address on an interface</a> and no shut the interface, the router would not allow me to type “<a href="http://www.anythingoverip.co.za/tutorials/topic/maintenance-topic-tutorials/interface-status/">show ip interface brief</a>” from the interface level, however from the interface level I would be able to type “do show ip interface brief”. This would allow me to remain in interface level, have a quick look to see if my interface has gone “up up” and continue with my configuration.</p>
<p>Below is a live demo of trying to do the “show run” command from global configuration mode. You will see I receive an error when trying to use the ‘show’ command from this level, but with ‘do show run’ the command works.</p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/do_command.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/do_command.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/using-the-pipe-command/' rel='bookmark' title='Permanent Link: Using the Pipe &#8216;|&#8217; command'>Using the Pipe &#8216;|&#8217; command</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-an-ip-address-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Configuring an IP address on a Cisco Device'>Configuring an IP address on a Cisco Device</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/topic/management/navigating-a-cisco-device/' rel='bookmark' title='Permanent Link: Navigating a Cisco device'>Navigating a Cisco device</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

