<?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>Learn-Networking.com &#187; computer networking</title>
	<atom:link href="http://learn-networking.com/tag/computer-networking/feed" rel="self" type="application/rss+xml" />
	<link>http://learn-networking.com</link>
	<description>Where 127.0.0.1 is Home.</description>
	<lastBuildDate>Sat, 27 Nov 2010 22:11:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Enable Passwords On Cisco Routers Via Enable Password And Enable Secret</title>
		<link>http://learn-networking.com/network-security/enable-passwords-on-cisco-routers-via-enable-password-and-enable-secret</link>
		<comments>http://learn-networking.com/network-security/enable-passwords-on-cisco-routers-via-enable-password-and-enable-secret#comments</comments>
		<pubDate>Thu, 29 May 2008 17:27:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Router Configuration]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[computer networking]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[router security]]></category>

		<guid isPermaLink="false">http://learn-networking.com/?p=155</guid>
		<description><![CDATA[Security is a part of every good technical administrator’s game plan. Luckily the good folks at Cisco have made the task of securitizing a Cisco router fairly straightforward in design- with support given for up to five types of passwords. Taking advantage of these passwords is vital to a network’s internal security, and should be [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Security is a part of every good technical administrator’s game plan. Luckily the good folks at Cisco have made the task of securitizing a Cisco router fairly straightforward in design- with support given for up to five types of passwords. Taking advantage of these passwords is vital to a network’s internal security, and should be implemented where permitted.<span id="more-155"></span></p>
<h3>Enable Password – The Most Basic Of Security Features</h3>
<p class="MsoNormal">The two most basic of passwords a Cisco router can provide support for is the <strong>enable password</strong> and <strong>enable secret</strong> commands. Depending on the IOS version, administrators will likely only need to setup the <strong>enable secret</strong> command.</p>
<p class="MsoNormal">For Cisco routers running IOS versions before version 10.3, enable password is going to be used. It is the outdated version of the two, and we’ll see why it isn’t used in average applications after we enable it. You can enable this basic password following the commands seen below.</p>
<blockquote>
<p class="MsoNormal"><span style="color: #000000;"><strong>Router&gt;</strong> enable</span></p>
<p class="MsoNormal"><span style="color: #000000;"><strong>Router#</strong> config terminal</span></p>
<p class="MsoNormal"><em><span style="color: #000000;">Enter configuration commands, one per line.<span> </span>End with CNTL/Z.</span></em></p>
<p class="MsoNormal"><span style="color: #000000;"><strong>Router(config)#</strong> enable password mypassword</span></p>
</blockquote>
<p class="MsoNormal">In this example, mypassword is the new password that is going to be set on the router. Try typing <strong>exit</strong> and navigate to the privileged mode, as seen below.</p>
<blockquote>
<p class="MsoNormal"><span style="color: #000000;"><strong>Router&gt; </strong>enable</span></p>
<p class="MsoNormal"><strong><span style="color: #000000;">Password:</span></strong></p>
</blockquote>
<p class="MsoNormal">You’ll notice that before we can get into privileged mode, we have to enter the password we set earlier. If you followed the above example, you should be able to input mypassword and press Enter. You are now authenticated for privileged mode!</p>
<p class="MsoNormal">So why don’t we use the <strong>enable password</strong> command in most cases? The answer is simple: it’s an outdated format that anyone can have ample opportunity to take advantage of. Try following the below steps and note what you see.</p>
<blockquote>
<p class="MsoNormal"><span style="color: #000000;"><strong>Router#</strong> show running-config</span></p>
<p class="MsoNormal"><em><span style="color: #000000;">Building configuration&#8230;</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;"> </span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">Current configuration : 162 bytes</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">version 12.2</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">no service password-encryption</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">hostname Router</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
<p class="MsoNormal"><strong><span style="color: #000000;">enable password mypassword</span></strong></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
</blockquote>
<p class="MsoNormal">As you can see, anyone can see the password in plain view. This is because it is stored as plain text- no encryption is being used! To help cover this vast security hole, Cisco created the enable secret command. As you can probably guess, it makes use of encryption this time around.</p>
<h3>Enable Secret – An Evolved Form Of The Previous Example</h3>
<p class="MsoNormal">Encryption can be a tough subject to tackle. But Cisco has made the process of enabling an encrypted password just as easy as the previous example. In fact, we are only changing one word in the process!</p>
<blockquote>
<p class="MsoNormal"><span style="color: #000000;"><strong>Router#</strong>configure terminal</span></p>
<p class="MsoNormal"><span style="color: #000000;">Enter configuration commands, one per line.<span> </span>End with CNTL/Z.</span></p>
<p class="MsoNormal"><span style="color: #000000;"><strong>Router(config)#</strong>enable secret mypassword</span></p>
</blockquote>
<p class="MsoNormal">Note that many routers will alert the user at this point if they have made the enable secret and the enable password values the same in terms of the password. Although the message that results is just a warning, and administrators can indeed set both to the same thing (although this is not recommended as it will almost defeat the purpose of the enable secret command).</p>
<p class="MsoNormal">Now let’s go back to the very beginning, and try logging back into privileged mode once more. We’ll take a look at the running configuration in the below example.</p>
<blockquote>
<p class="MsoNormal"><span style="color: #000000;"><strong>Router# </strong>show running-config</span></p>
<p class="MsoNormal"><em><span style="color: #000000;">Building configuration&#8230;</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;"> </span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">Current configuration : 209 bytes</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">version 12.2</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">no service password-encryption</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">hostname Router</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
<p class="MsoNormal"><strong><span style="color: #000000;">enable secret 5 $1$mERr$7sOd0mgRuXYhHwfWsV4QZ/</span></strong></p>
<p class="MsoNormal"><strong><span style="color: #000000;">enable password mypassword</span></strong></p>
<p class="MsoNormal"><em><span style="color: #000000;">!</span></em></p>
</blockquote>
<p class="MsoNormal">Notice how the enable secret password is unreadable, while the outdated command enable password is being displayed in plain view! Obviously, it comes as to no surprise that Cisco decided to do away with the command in order to improve network security.</p>
<h3>Closing Comments</h3>
<p class="MsoNormal">We’ve discussed only two of the five different passwords that Cisco allows network administrators to take advantage of. If you’d like to take security a step further, be sure to check out the next section that discusses subjects such as Telnet passwords, console passwords, and even auxiliary passwords!</p>
<img src="http://learn-networking.com/learn-networking.com/?ak_action=api_record_view&id=155&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://learn-networking.com/network-security/enable-passwords-on-cisco-routers-via-enable-password-and-enable-secret/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

