<?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: Configuring Cisco 1710 for AAA w/ CSACS in Network Access Control</title>
    <link>https://community.cisco.com/t5/network-access-control/configuring-cisco-1710-for-aaa-w-csacs/m-p/374615#M432583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks nchopra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must say that I'm not too impressed just yet on the Cisco Press book that covers this; it runs through it pretty quickly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your explanation, I have a much clearer understanding of what I was setting up; not to mention it works just fine now. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Again,&lt;/P&gt;&lt;P&gt;BWG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Mar 2005 17:17:53 GMT</pubDate>
    <dc:creator>bwgraybwgray</dc:creator>
    <dc:date>2005-03-03T17:17:53Z</dc:date>
    <item>
      <title>Configuring Cisco 1710 for AAA w/ CSACS</title>
      <link>https://community.cisco.com/t5/network-access-control/configuring-cisco-1710-for-aaa-w-csacs/m-p/374613#M432581</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having a bit of a time here working through the Cisco press book trying to configure my 1710 router (IOS 12.2) to connect with a tacacs+ server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Server is CSACS v3.3 running on Win2k3. *I think I have that configured correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying the following commands from the Secur Cisco Press Book:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aaa new-model&lt;/P&gt;&lt;P&gt;aaa authentication ppp newlist tacacs+ local&lt;/P&gt;&lt;P&gt;tacacs-server host 20.0.0.2 key labkey&lt;/P&gt;&lt;P&gt;interface ethernet0&lt;/P&gt;&lt;P&gt;ppp authentication default &amp;lt;--- THIS IS THE LINE NOT ACCEPTED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for some reason as soon as I go into the interface mode, ppp is unrecognized. *I am assuming I don't understand something correctly here - or I can only put ppp authentication on Serial Lines?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Everyone,&lt;/P&gt;&lt;P&gt;BWG&lt;/P&gt;</description>
      <pubDate>Sun, 10 Mar 2019 21:02:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/configuring-cisco-1710-for-aaa-w-csacs/m-p/374613#M432581</guid>
      <dc:creator>bwgraybwgray</dc:creator>
      <dc:date>2019-03-10T21:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring Cisco 1710 for AAA w/ CSACS</title>
      <link>https://community.cisco.com/t5/network-access-control/configuring-cisco-1710-for-aaa-w-csacs/m-p/374614#M432582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You've got two ways to accomplish the task:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First Configuration:&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aaa new-model&lt;/P&gt;&lt;P&gt;tacacs-server host 20.0.0.2 key labkey&lt;/P&gt;&lt;P&gt;aaa authentication login default group tacacs+ local&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above configuration uses the Keyword "default" under the aaa authentication command line..&lt;/P&gt;&lt;P&gt;"Default" keyword automatically enables the TACACS+/ Radius authentication on every interface of the router, so need not to do any configuration on the Interfaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second Configuration: (the method that ur trying to do)&lt;/P&gt;&lt;P&gt;----------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aaa new-model&lt;/P&gt;&lt;P&gt;tacacs-server host 20.0.0.2 key labkey&lt;/P&gt;&lt;P&gt;aaa authentication login newlist group tacacs+ local&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------&lt;/P&gt;&lt;P&gt;Under this configuration, I've changed the keyword "default" with "newlist", this is known as "Method List".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, TACACS authentication needs to be enabled manually on every interface or on those interface on which u would like to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the command which will be used to enable the method list on interfaces will be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Router(config-if)#login authentication newlist&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to authenticate users telnetting into your router, then configure this command under the VTY 0 4 lines not under the Ethernet0 or if you want to authenticate dialin users then you need to configure this command under the Line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using any specific authentication protocol then you can configure "ppp authentication pap/chap/MSCHAPV2" under ethernet interface, but make sure the same protocol is being used by the ACS server also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALL THE BEST !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2005 07:35:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/configuring-cisco-1710-for-aaa-w-csacs/m-p/374614#M432582</guid>
      <dc:creator>nchopra79</dc:creator>
      <dc:date>2005-03-03T07:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring Cisco 1710 for AAA w/ CSACS</title>
      <link>https://community.cisco.com/t5/network-access-control/configuring-cisco-1710-for-aaa-w-csacs/m-p/374615#M432583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks nchopra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must say that I'm not too impressed just yet on the Cisco Press book that covers this; it runs through it pretty quickly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your explanation, I have a much clearer understanding of what I was setting up; not to mention it works just fine now. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Again,&lt;/P&gt;&lt;P&gt;BWG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2005 17:17:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/configuring-cisco-1710-for-aaa-w-csacs/m-p/374615#M432583</guid>
      <dc:creator>bwgraybwgray</dc:creator>
      <dc:date>2005-03-03T17:17:53Z</dc:date>
    </item>
  </channel>
</rss>

