<?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: Wired 802.1X with custom authentication list - no &amp;quot;default&amp;quot; in Network Access Control</title>
    <link>https://community.cisco.com/t5/network-access-control/wired-802-1x-with-custom-authentication-list-no-quot-default/m-p/3907734#M24732</link>
    <description>&lt;P&gt;This is only possible when using IBNS 2.0. Here is snippet, but suggest going through &lt;A href="https://community.cisco.com/t5/security-documents/ise-secure-wired-access-prescriptive-deployment-guide/ta-p/3641515" target="_self"&gt;wired guide&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;policy-map type control subscriber PORT-AUTH-POLICY-I&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;event session-started match-all&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10 class always do-all&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10 authenticate using dot1x aaa authc-list &lt;I&gt;&lt;SPAN&gt;&lt;STRONG&gt;auth-dot1x&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/I&gt; authz-list &lt;I&gt;&lt;SPAN&gt;&lt;STRONG&gt;autho-dot1x&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/I&gt; priority 10&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;20 authenticate using mab aaa authc-list &lt;I&gt;&lt;SPAN&gt;&lt;STRONG&gt;auth-dot1x&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/I&gt; authz-list &lt;I&gt;&lt;SPAN&gt;&lt;STRONG&gt;autho-dot1x&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/I&gt; priority 20&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Accounting still needs to use 'default' even with IBNS 2.0.&lt;/P&gt;</description>
    <pubDate>Tue, 13 Aug 2019 22:05:11 GMT</pubDate>
    <dc:creator>howon</dc:creator>
    <dc:date>2019-08-13T22:05:11Z</dc:date>
    <item>
      <title>Wired 802.1X with custom authentication list - no "default"</title>
      <link>https://community.cisco.com/t5/network-access-control/wired-802-1x-with-custom-authentication-list-no-quot-default/m-p/3907071#M24729</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not want to use, authentication list named "default" for 802.1x authentication. I want to use my own custom list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example for ssh login I use -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;aaa new-model&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;radius server nps01&lt;BR /&gt;&amp;nbsp; &amp;nbsp;address ipv4 172.16.245.11 auth-port 1812 acct-port 1813&lt;BR /&gt;&amp;nbsp; &amp;nbsp;key test123&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;aaa group server radius nps-servers&lt;BR /&gt;&amp;nbsp; &amp;nbsp; server name nps01&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;aaa authentication login &lt;STRONG&gt;my-ssh-login&lt;/STRONG&gt; group nps-servers local&lt;BR /&gt;aaa authorization exec &lt;STRONG&gt;my-ssh-autho&lt;/STRONG&gt; group nps-servers local&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;line vty 0 4&lt;BR /&gt;&amp;nbsp; authorization exec &lt;STRONG&gt;my-ssh-autho&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; login authentication &lt;STRONG&gt;my-ssh-login&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; transport input ssh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But for 802.1x -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I must write&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;SPAN&gt;aaa authentication dot1x &lt;STRONG&gt;default&lt;/STRONG&gt; group nps-servers&lt;/SPAN&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;SPAN&gt;aaa authorization network &lt;STRONG&gt;default&lt;/STRONG&gt; group nps-servers&lt;/SPAN&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I do not want to use this default list, I want to use my own custom named list like SSH, for example -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;SPAN&gt;aaa authentication dot1x &lt;STRONG&gt;auth-dot1x&lt;/STRONG&gt; group nps-servers&lt;BR /&gt;aaa authorization network &lt;STRONG&gt;autho-dot1x&lt;/STRONG&gt; group nps-servers&lt;/SPAN&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But it does not work, as expected. I need to bind these list with 802.1x process. And I do not know if it is possible or what are the commands. As in for SSH access, I have bind them under vty lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the Cisco's documentation refers to this default list. For 802.1x, is it possible to use a custom list?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2019 20:13:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/wired-802-1x-with-custom-authentication-list-no-quot-default/m-p/3907071#M24729</guid>
      <dc:creator>ssajiby2k</dc:creator>
      <dc:date>2019-08-12T20:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Wired 802.1X with custom authentication list - no "default"</title>
      <link>https://community.cisco.com/t5/network-access-control/wired-802-1x-with-custom-authentication-list-no-quot-default/m-p/3907734#M24732</link>
      <description>&lt;P&gt;This is only possible when using IBNS 2.0. Here is snippet, but suggest going through &lt;A href="https://community.cisco.com/t5/security-documents/ise-secure-wired-access-prescriptive-deployment-guide/ta-p/3641515" target="_self"&gt;wired guide&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;policy-map type control subscriber PORT-AUTH-POLICY-I&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;event session-started match-all&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10 class always do-all&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10 authenticate using dot1x aaa authc-list &lt;I&gt;&lt;SPAN&gt;&lt;STRONG&gt;auth-dot1x&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/I&gt; authz-list &lt;I&gt;&lt;SPAN&gt;&lt;STRONG&gt;autho-dot1x&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/I&gt; priority 10&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;20 authenticate using mab aaa authc-list &lt;I&gt;&lt;SPAN&gt;&lt;STRONG&gt;auth-dot1x&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/I&gt; authz-list &lt;I&gt;&lt;SPAN&gt;&lt;STRONG&gt;autho-dot1x&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/I&gt; priority 20&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Accounting still needs to use 'default' even with IBNS 2.0.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2019 22:05:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/wired-802-1x-with-custom-authentication-list-no-quot-default/m-p/3907734#M24732</guid>
      <dc:creator>howon</dc:creator>
      <dc:date>2019-08-13T22:05:11Z</dc:date>
    </item>
  </channel>
</rss>

