<?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: AAA Command authorization on ASA in Network Access Control</title>
    <link>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319564#M550487</link>
    <description />
    <pubDate>Fri, 26 Jan 2018 15:29:37 GMT</pubDate>
    <dc:creator>peppe-bahnhof</dc:creator>
    <dc:date>2018-01-26T15:29:37Z</dc:date>
    <item>
      <title>AAA Command authorization on ASA</title>
      <link>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319053#M550485</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to get AAA command authorization to work on an Asa running 9.6. without any luck..&lt;/P&gt;
&lt;P&gt;Authentication seems to be working fine, but for some reason the Asa rejects all commands.&lt;/P&gt;
&lt;P&gt;My config looks like this:&lt;/P&gt;
&lt;PRE&gt;group = read-only {
        service = exec {
                priv-lvl = 15
        }
        cmd = show {
                permit .*
        }
}

user = bob {
                login = des $1$VF$kBvTjygux4xdkHjGUSSwd1
                service = shell { priv-lvl=5 }
                member = read-only
        }
&lt;/PRE&gt;
&lt;P&gt;The ASA has the following configuration:&lt;/P&gt;
&lt;PRE&gt;aaa-server TEST (outside) host x.y.z.w
 key *****
aaa authorization command TEST&lt;/PRE&gt;
&lt;P&gt;The traffic is reaching the server just fine (as authentication towards the same server works), but for some reason all commands are rejected.&lt;/P&gt;
&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 18:44:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319053#M550485</guid>
      <dc:creator>Chewbakka1</dc:creator>
      <dc:date>2020-02-21T18:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: AAA Command authorization on ASA</title>
      <link>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319361#M550486</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- Which error is produced , then, on a rejected command ?&lt;/P&gt;
&lt;P&gt;M.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 08:11:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319361#M550486</guid>
      <dc:creator>Mark Elsen</dc:creator>
      <dc:date>2018-01-26T08:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: AAA Command authorization on ASA</title>
      <link>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319564#M550487</link>
      <description />
      <pubDate>Fri, 26 Jan 2018 15:29:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319564#M550487</guid>
      <dc:creator>peppe-bahnhof</dc:creator>
      <dc:date>2018-01-26T15:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: AAA Command authorization on ASA</title>
      <link>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319660#M550488</link>
      <description>&lt;P&gt;I omitted the group membership for user bob.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;user = bob {
                default service = deny
                name = "bob"
                login = des $1$VF$kBGTjygux4xckHjGUSSwd1
                service = exec { priv-lvl=15 }
                cmd = show { permit "run|arp|config" }
                #member = read-only
        }&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;The logs outputs the following:&lt;/P&gt;
&lt;PRE&gt;Fri Jan 26 14:26:34 2018 [32068]: Start authorization request
Fri Jan 26 14:26:34 2018 [32068]: do_author: user='enable_15'
Fri Jan 26 14:26:34 2018 [32068]: user 'enable_15' found
Fri Jan 26 14:26:34 2018 [32068]: authorize_cmd: user=enable_15, cmd=show
Fri Jan 26 14:26:34 2018 [32068]: cmd show does not exist, denied by default
Fri Jan 26 14:26:34 2018 [32068]: authorization query for 'enable_15' 22 from x.y.z.w rejected&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 Jan 2018 15:31:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3319660#M550488</guid>
      <dc:creator>Chewbakka1</dc:creator>
      <dc:date>2018-01-26T15:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: AAA Command authorization on ASA</title>
      <link>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3321912#M550489</link>
      <description>&lt;P&gt;A test with the same server configuration against an IOS switch was made, without any problems.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 20:02:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/aaa-command-authorization-on-asa/m-p/3321912#M550489</guid>
      <dc:creator>Chewbakka1</dc:creator>
      <dc:date>2018-01-30T20:02:52Z</dc:date>
    </item>
  </channel>
</rss>

