<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: rsa/ace server radius authentication in Network Access Control</title>
    <link>https://community.cisco.com/t5/network-access-control/rsa-ace-server-radius-authentication/m-p/662039#M422446</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rick , Thanks for reply but still have problem.I have below now on router.Do I need to add anything on vty / console lines ? I have just myself on the ace side of things setup for testing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some questions.&lt;/P&gt;&lt;P&gt;What is the default authentication list ?&lt;/P&gt;&lt;P&gt;Also I currently have a local database username and password setup on the router with the login local command applied to vty and console lines.&lt;/P&gt;&lt;P&gt;If I just want to authenticate one user eg myself xxx can i just put this in instead of'default'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aaa new-model&lt;/P&gt;&lt;P&gt;aaa authentication login default group radius line&lt;/P&gt;&lt;P&gt;aaa authentication enable default group radius enable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;radius-server host x.x.x.x auth-port 1645 acct-port 1813&lt;/P&gt;&lt;P&gt;radius-server retransmit 3&lt;/P&gt;&lt;P&gt;radius-server key xxxxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Nov 2006 12:14:44 GMT</pubDate>
    <dc:creator>FrancisHoban</dc:creator>
    <dc:date>2006-11-16T12:14:44Z</dc:date>
    <item>
      <title>rsa/ace server radius authentication</title>
      <link>https://community.cisco.com/t5/network-access-control/rsa-ace-server-radius-authentication/m-p/662037#M422444</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am in the process of setting up cisco routers/swithces to authenticate to an RSA/ACE radius server. Basically I would like it to work as follows.&lt;/P&gt;&lt;P&gt;SSH/Telnet to router switch.I have ace side configured. I have added the necessary users to authenticate list on agent host.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Username:joebloggs&lt;/P&gt;&lt;P&gt;Password : ( rsa secure id token here ). Do I have to authenticate then using enable password or what is best practice here ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;router&amp;gt;en&lt;/P&gt;&lt;P&gt;router#&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following lines added so far and need some help on the aaa authentication as there seems to be a lot of options &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aaa new-model&lt;/P&gt;&lt;P&gt;aaa authentication banner # Connection to this device is for authorized users only #&lt;/P&gt;&lt;P&gt;aaa authentication fail-message # You are not authorized to log on to this device #&lt;/P&gt;&lt;P&gt;radius-server host x.x.x.x auth-port 1645 acct-port 1813&lt;/P&gt;&lt;P&gt;radius-server retransmit 3&lt;/P&gt;&lt;P&gt;radius-server key xxxxxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Mar 2019 21:50:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/rsa-ace-server-radius-authentication/m-p/662037#M422444</guid>
      <dc:creator>FrancisHoban</dc:creator>
      <dc:date>2019-03-10T21:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: rsa/ace server radius authentication</title>
      <link>https://community.cisco.com/t5/network-access-control/rsa-ace-server-radius-authentication/m-p/662038#M422445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;francis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want users who telnet/SSH to vty ports or who are on the console to authenticate with the radius server you should add something like this to your configuration:&lt;/P&gt;&lt;P&gt;aaa authentication login default group radius line&lt;/P&gt;&lt;P&gt;This will send an authentication request to the configured radius server and if there is an error from the radius server (this is different from a negative response) then the router will authenticate using the configured line password. This will work for both telnet and SSH connections and for login from the console.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are correct that there are quite a few optional parameters. These are to allow flexibility in what is the primary authentication method and what (if any) fall back methods you wish to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From user mode going to enable mode you could configure the router to use the enable password/enable secret or you can configure it to use radius. I believe that best practice is to use radius rather than the local enable password/enable secret.&lt;/P&gt;&lt;P&gt;aaa authentication enable default group radius enable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 17:17:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/rsa-ace-server-radius-authentication/m-p/662038#M422445</guid>
      <dc:creator>Richard Burts</dc:creator>
      <dc:date>2006-11-15T17:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: rsa/ace server radius authentication</title>
      <link>https://community.cisco.com/t5/network-access-control/rsa-ace-server-radius-authentication/m-p/662039#M422446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rick , Thanks for reply but still have problem.I have below now on router.Do I need to add anything on vty / console lines ? I have just myself on the ace side of things setup for testing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some questions.&lt;/P&gt;&lt;P&gt;What is the default authentication list ?&lt;/P&gt;&lt;P&gt;Also I currently have a local database username and password setup on the router with the login local command applied to vty and console lines.&lt;/P&gt;&lt;P&gt;If I just want to authenticate one user eg myself xxx can i just put this in instead of'default'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aaa new-model&lt;/P&gt;&lt;P&gt;aaa authentication login default group radius line&lt;/P&gt;&lt;P&gt;aaa authentication enable default group radius enable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;radius-server host x.x.x.x auth-port 1645 acct-port 1813&lt;/P&gt;&lt;P&gt;radius-server retransmit 3&lt;/P&gt;&lt;P&gt;radius-server key xxxxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 12:14:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/rsa-ace-server-radius-authentication/m-p/662039#M422446</guid>
      <dc:creator>FrancisHoban</dc:creator>
      <dc:date>2006-11-16T12:14:44Z</dc:date>
    </item>
  </channel>
</rss>

