<?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>RouterNotes.com &#187; Radius</title>
	<atom:link href="http://routernotes.com/tag/radius/feed/" rel="self" type="application/rss+xml" />
	<link>http://routernotes.com</link>
	<description>Networking and Mac OS X lessons learned in a Campus LAN environment</description>
	<lastBuildDate>Mon, 15 Sep 2008 18:01:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Authentication in Cisco IOS</title>
		<link>http://routernotes.com/2008/02/11/authentication-in-cisco-ios/</link>
		<comments>http://routernotes.com/2008/02/11/authentication-in-cisco-ios/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 14:13:57 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Cisco Routers/Switches]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[IOS Fundamentals]]></category>
		<category><![CDATA[Authenticaton]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Radius]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[TACACS+]]></category>

		<guid isPermaLink="false">http://routernotes.com/2008/02/11/authentication-in-cisco-ios/</guid>
		<description><![CDATA[Adding username and password authentication to Cisco routers and switches doesn&#8217;t take more than a few minutes, does not require a software upgrade in most cases, and will increase router and switch security.
Authentication can be passed to a central server so that users and passwords can be created and modified in one spot without having [...]


Related posts:<ol><li><a href='http://routernotes.com/2007/10/01/configuring-ssh-on-cisco-routersswitches-how-to/' rel='bookmark' title='Permanent Link: Configuring SSH on Cisco routers/switches (How-to)'>Configuring SSH on Cisco routers/switches (How-to)</a> <small>With all of the security problems out there today, it...</small></li><li><a href='http://routernotes.com/2007/11/29/showing-the-configuration-at-the-interface-level/' rel='bookmark' title='Permanent Link: Showing the configuration at the interface level'>Showing the configuration at the interface level</a> <small>One of the pains about Cisco is that once you...</small></li><li><a href='http://routernotes.com/2008/05/27/working-with-vlans-on-cisco-switches/' rel='bookmark' title='Permanent Link: Working with VLANS on Cisco Switches'>Working with VLANS on Cisco Switches</a> <small>Historically, creating multiple networks required multiple switches, but VLANs (Virtual...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Adding username and password authentication to Cisco routers and switches doesn&#8217;t take more than a few minutes, does not require a software upgrade in most cases, and will increase router and switch security.<br />
Authentication can be passed to a central server so that users and passwords can be created and modified in one spot without having to change the configuring on every router and switch in the company. Additionally, this type of authentication is needed to <a href="http://routernotes.com/2007/10/01/configuring-ssh-on-cisco-routersswitches-how-to/" title="SSH configuration How-to">configure Secure Shell</a> access to routers and switches, which encrypts administration traffic. Cisco supports username and password authentication on almost every device so a software upgrade is probably not needed before configuration. But Secure Shell requires a software upgrade in many cases.<br />
A nice example for configuring RADIUS authentication on routers and switches or passing authentication back to the company&#8217;s <a href="http://en.wikipedia.org/wiki/Active_Directory" id="o32j" title="Active Directory" target="_blank">Active Directory</a> can be found at <a href="http://articles.techrepublic.com.com/5100-1035-6182945.html" id="v-q7" title="Configuring RADIUS and Active Directory Authentication">TechRepublic</a>..<br />
In many cases, administrators just configure a telnet password for their network devices, which is the least secure way to permit access. Here is an example of the way those routers are configured.</p>
<p>RouterA#<strong>configure terminal</strong><br />
RouterA(config)# <strong>line vty 0 4</strong><br />
<em>A router&#8217;s telnet interface is called a vty, short for Virtual Teletype Terminal.</em><br />
RouterA(config)# <strong>password letmein</strong><br />
RouterA(config)# <strong>end</strong><br />
This will allow access to router via telnet by just the password <em>letmein</em>. Below is an example of configuring a router for username and password authentication from a local database stored on the router itself. If you have more than one router or switch, each router will need to be configured. Either way is more secure than just a password by itself. A more complex password increases security, so use passwords that are difficult to guess and create usernames that are not as simple to guess <em>like admin </em>or <em>cisco</em>..</p>
<p>RouterA#<strong>configure terminal</strong><br />
RouterA(config)# <strong>username Jane password Doe</strong><br />
RouterA(config)# <strong>username Bob password Smith</strong><br />
RouterA(config)# <strong>aaa new-model</strong><br />
RouterA(config)# <strong>aaa authentication login default local</strong><br />
RouterA(config)# <strong>end</strong><br />
<!-- START CUSTOM WIDGETBUCKS CODE -->
<div><script src="http://api.widgetbucks.com/script/ads.js?uid=jM8onWlI839Sq4Cw"></script></div>
<p><!-- END CUSTOM WIDGETBUCKS CODE --></p>
<p>The configuration creates the usernames <em>Jane </em>and <em>Bob </em>with the passwords <em>Doe </em>and <em>Smith </em>respectively. AAA stands for authentication, authorization and accounting. The line &#8216;<strong>aaa authentication login default local&#8217; </strong>specifies that local authentication should be used for login by default<strong>. </strong>The passwords will show up in the configuration just as you typed them and be readable by everyone that has access to the router configuration file unless the service password-encryption command is used. For example:</p>
<p>RouterA#<strong>configure terminal</strong><br />
RouterA(config)# <strong>service password-encryption</strong><br />
RouterA(config)# <strong>end</strong></p>
<p>Now your passwords will be encrypted in the configuration. There are tools available that can decrypt these passwords, so configurations should still be stored in a secure place.</p>
<p>Here is a look at configuring TACACS+ authentication, a centralized authentication protocol that passes authentication of to a server. In this example, the switch or router will first look to TACACS+ for authentication and then if that fails, it will look in the local user database. This will give you access if your network device loses network connectivity to the TACACS+ server. This example assumes there is a working TACACS+ server already running on your network. If not, notes on configuring a TACACS+ server on linux can be found <a href="http://www.debianhelp.co.uk/tacas.htm" id="tior" title="build a TACACS+ server in Debian">here.</a></p>
<p>RouterA#<strong>configure terminal </strong><br />
RouterA(config)# <strong>aaa new-model</strong><br />
RouterA(config)# <strong>aaa authentication login default group tacacs+ local</strong><br />
RouterA(config)# <strong>tacacs-server host 10.1.1.1</strong><br />
RouterA(config)# <strong>tacacs-server host 10.1.1.2</strong><br />
RouterA(config)# <strong>tacacs-server key SecretPassword</strong><br />
RouterA(config)# <strong>end</strong></p>
<p>If the switch or router has access to the authentication server, then the next time that you log in, the device should prompt you for a username rather than just a password. Complete details on <a href="http://www.cisco.com/en/US/products/ps6350/products_configuration_guide_chapter09186a00804fdcec.html" id="y-76" title="configuring aaa access at cisco.com">configuring aaa access can be found on Cisco&#8217;s website</a>.</p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2007/10/01/configuring-ssh-on-cisco-routersswitches-how-to/' rel='bookmark' title='Permanent Link: Configuring SSH on Cisco routers/switches (How-to)'>Configuring SSH on Cisco routers/switches (How-to)</a> <small>With all of the security problems out there today, it...</small></li><li><a href='http://routernotes.com/2007/11/29/showing-the-configuration-at-the-interface-level/' rel='bookmark' title='Permanent Link: Showing the configuration at the interface level'>Showing the configuration at the interface level</a> <small>One of the pains about Cisco is that once you...</small></li><li><a href='http://routernotes.com/2008/05/27/working-with-vlans-on-cisco-switches/' rel='bookmark' title='Permanent Link: Working with VLANS on Cisco Switches'>Working with VLANS on Cisco Switches</a> <small>Historically, creating multiple networks required multiple switches, but VLANs (Virtual...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/02/11/authentication-in-cisco-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
