<?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: Cisco ISE 3.1 command set issues NEED HELP!! in Network Access Control</title>
    <link>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4851778#M582132</link>
    <description>&lt;P&gt;Hello All ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which privilege you give on the profile for the specific group ? privilege 15 ?&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 08:03:25 GMT</pubDate>
    <dc:creator>minas.balaskas</dc:creator>
    <dc:date>2023-06-09T08:03:25Z</dc:date>
    <item>
      <title>Cisco ISE 3.1 command set issues NEED HELP!!</title>
      <link>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4845507#M582012</link>
      <description>&lt;P&gt;I am trying to configure certain command sets in ISE 3.1.&lt;/P&gt;&lt;P&gt;I need the user to only shut and no shut ports. I can't seem to get the correct syntax. The commands I have allowed work if I remove config t from command list it works. How can I make it so only shut and no shut interface work while in config t? Each time I tried it allows you to create VLANS so what I am using is wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fpizano1_0-1685460075980.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/186027iEF2B355AEFBA640A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fpizano1_0-1685460075980.png" alt="fpizano1_0-1685460075980.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I know command set works when I remove config t from above I get this. I just cant get to to only allow shut no shut.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;iaXXXX-lab-s1#sh privilege&lt;BR /&gt;Current privilege level is 15&lt;BR /&gt;iaceda-lab-s1#conf t&lt;BR /&gt;Command authorization failed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 15:22:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4845507#M582012</guid>
      <dc:creator>fpizano1</dc:creator>
      <dc:date>2023-05-30T15:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ISE 3.1 command set issues NEED HELP!!</title>
      <link>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4845906#M582016</link>
      <description>&lt;P&gt;We have our Tier 2 team set up to add vlans if needed but the other commands below seem to be working fine for us.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mitchp75_0-1685478566895.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/186042iE2C19049EC163207/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mitchp75_0-1685478566895.png" alt="mitchp75_0-1685478566895.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 22:15:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4845906#M582016</guid>
      <dc:creator>mitchp75</dc:creator>
      <dc:date>2023-05-30T22:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ISE 3.1 command set issues NEED HELP!!</title>
      <link>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4845917#M582019</link>
      <description>&lt;P&gt;TACACS+ command authorization is good fun. The way to think about the config in the AAA server is this: The entire command and its arguments are sent to the AAA server when the user presses Enter. You process each line as it comes in.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But there are some things to remember:&lt;/P&gt;
&lt;P&gt;1) Command syntax uses widlcards (the simple * and ? placeholders)&lt;/P&gt;
&lt;P&gt;2) Argument syntax uses regular expressions (regular expressions, e.g. [a-zA-Z] etc)&lt;/P&gt;
&lt;P&gt;3) The IOS interpreter will always send the full command and arguments to the AAA server -e.g. if a user types an abbreviated command like "conf t" then the interpreter will send "configuration terminal" - this is important because you (AAA admin) don't need to worry about processing shortcuts. Use the full command name in the "command' argument.&lt;/P&gt;
&lt;P&gt;So I would do this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;GRANT      COMMAND           ARGUMENT
permit     configure        terminal
permit     interface
permit     shutdown
permit     exit
permit     show              interface
permit     no                shutdown
permit     end&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The above means that you are permitted to enter these commands no matter which section of the CLI you are in. But we are only allowing the user to get into config mode (and to exit config mode) and then to enter the interface sub-section. User could enter the command "shutdown" in the global config (it's allowed by ISE with our config) but the command makes no sense in global config. It only makes sense in the interface sub-section. But ISE has no awareness of how the IOS CLI hierarchy works - nor does it need to. Just test to make sure the user can't do anything crazy.&lt;/P&gt;
&lt;P&gt;Anything that does not have a permit will be denied.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"no" is also a command - we can limit that to only allow the negation of the shutdown function.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tacacs-juniorops.png" style="width: 999px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/186059iC244ED370516226E/image-size/large?v=v2&amp;amp;px=999" role="button" title="tacacs-juniorops.png" alt="tacacs-juniorops.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 21:53:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4845917#M582019</guid>
      <dc:creator>Arne Bier</dc:creator>
      <dc:date>2023-05-30T21:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ISE 3.1 command set issues NEED HELP!!</title>
      <link>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4851778#M582132</link>
      <description>&lt;P&gt;Hello All ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which privilege you give on the profile for the specific group ? privilege 15 ?&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 08:03:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/cisco-ise-3-1-command-set-issues-need-help/m-p/4851778#M582132</guid>
      <dc:creator>minas.balaskas</dc:creator>
      <dc:date>2023-06-09T08:03:25Z</dc:date>
    </item>
  </channel>
</rss>

