Home > Articles > Cisco > CCNA Security

AAA and your Cisco Equipment

In this article, Anthony Sequeira provides details regarding Authentication, Authorization, and Accounting (AAA) services in a Cisco network environment. This information is required for CCNA Security and can also prove to be critical skills for the “real world” implementation of secure networks.
Like this article? We recommend

As network security professionals, we have a tendency to think of ourselves as the first line of defense where our networks are concerned. However, the actual truth is we hand off a huge portion of that responsibility to the devices in the network themselves. Whether we are talking about routers, switches, or Adaptive Security Appliances (ASA), we know that we have to take the necessary steps to protect the network. We can do this in a number of ways, but specifically we can do it locally (local user database) or externally (AAA Server). In this blog we are going to explore the three A's in Triple-A, what they do, how they do it, and how to configure them on a device to work with external servers.

Authentication

Authentication is how a Cisco device decides if a particular user should be allowed to access the network. All CCNA's know how to create a local database of usernames and passwords to be used for Telnet access, or PPP authentication, and when authentication is configured in this fashion it is typically called a "self-contained AAA deployment"—self-contained because it doesn't require the use of an external server. This configuration is accomplished simply by typing:

R1(config)#username MYNAME password CCNA2BE

When it comes down to authentication in the standard CCNA exam, that is about the extent of it; but for anyone hoping to successfully pass the CCNA Security exam, there is much more to learn. More often than not, we will be required to use an external server to maintain our user database. These servers will normally run one of two security protocols:

  • TACACS+—is a Cisco Proprietary, Transmission Control Protocol (TCP port 49) based security protocol.
    • Encrypts the entire packet
    • Considers Authentication, Authorization, and Accounting to be separate processes
      • It allows other methods of authentication to be used while using TACACS+ for authorization and accounting.
      • It controls the authorization level of users and router commands.
  • RADIUS—is a Standards-based, Universal Datagram Protocol (UDP port 1812) security protocol created by the IETF.
    • Encrypts only the password in the initial client-server packet
    • Combines the authentication and authorization process
    • Cannot control the authorization level of users and router commands.

Regardless of which protocol we are going to run, AAA must be enabled globally with the aaa new-model command. After doing this we need to tell the router where to look for the external servers, and provide shared encryption keys. These keys must agree with those used by the server. We will use CCNA2BE in the following example:

R1(config)#aaa new-model
R1(config)#tacacs-server host 10.1.13.3 key CCNA2BE
R1(config)#radius-server host 10.1.14.4 key CCNA2BE

The aaa new-model command does two things for us:

  • Enables AAA
  • Renders every other configured method of authentication useless. This especially applies to the VTY lines!

We have configured R1 to be a client of both the TACACS+ server located at 10.1.13.3 and the RADIUS server at 10.1.14.4. Now we need to tell the router what servers to use for authentication and in what order to use them. We will configure a default list. Default lists are often times called method lists, because they list the methods of authentication to use. This is accomplished by the following command:

R1(config)#aaa authentication login default group radius group tacacs+ none

In this example, we will first try to authenticate to the RADIUS server, then to the TACACS+, but if neither of those are reachable then the next 'method' will be none. Meaning there will be no requirement for authentication. The use of the option 'none' only applies when the Radius server and TACACS+ server are not reachable, not if authentication fails. Be very careful when configuring Authentication, it is very easy to lock yourself out of your device!

Authorization

Now we are looking at the part of Triple-A where the control mechanism determines whether a user should have access to the network or network services. Authorization controls what users can do once they are logged in. This is accomplished as follows and assumes that the aaa new-model is already configured:

R1(config)#aaa authorization exec default
 Cache       	Use Cached-group
 Group       	Use server-group.
 If-authenticated 	succeed if user has authenticated.
 krb5-instance   	Use Kerberos instance privilege maps.
 Local       	Use local database
 None       	No authorization (always succeeds)
R1(config)#aaa authorization exec default group tacacs

There is another element associated with authorization and that is Privilege Levels. These levels define what commands a user can actually run on a device. There are 3 privilege levels by default, Level 0, 1 and 15. You can create custom levels between 1 and 15. Keep in mind a custom level will have access to the commands at its level and all those below it.

Your current privilege level can be verified by the following:

R1>sh privilege
Current privilege level is 1
R1>ping 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/4/8 ms

Note that we are at privilege level 1 and that we can ping the ip address 1.1.1.1.

We have to point out now that it is possible to move a command to another privilege level. We will move the ping command up to a custom privilege level of 5 in this example and then test from both Privilege level 1 and then level 15:

R1>sh privilege
Current privilege level is 1
R1>
R1>ping 1.1.1.1
  ^
% Invalid input detected at '^' marker.
R1>enable
R1#sh privilege
Current privilege level is 15
R1#
R1#ping 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/5/8 ms

At privilege level 1, we could not execute the ping it was an invalid command. But at privilege level 15, which is greater than level 5, we not only can execute the ping we also get ICMP Echo Replies.

There are two ways to assign privilege levels to users. One method involves AAA and the other does not. To enable AAA authorization to use privilege levels, use the following command:

R1(config)#aaa authorization commands 5 default group tacacs+ local

But privilege commands can also be assigned by using the privilege option between the username and password command when the user database is local to the device:

R1(config)#username MYNAME privilege 5 password CCNA2BE

Accounting

This is where the resources used by an authorized user is tracked or audited. The tracking can be used for security purposes, or for monitoring network utilization for the purpose of billing. Accounting requires AAA to be globally enabled, and after that the aaa accounting command is used to define any specific parameters. It is important to note that there are a lot of capabilities with this feature.

The basic categories supported by the accounting mechanism are as follows:

  • Commands—this references the EXEC mode command a user may issue
  • Connection—the outbound connections made from network access servers
    • Telnet
  • EXEC—User EXEC Terminal sessions
  • Network—Network Sessions
    • Point-to-Point Protocol (PPP)
    • Apple Talk Remote Access Protocol (ARAP)
    • Serial Line Internet Protocol (SLIP)
  • Resources—Start and Stop records for passing authentication, Stop records for failing authentications.
  • System—System events that are not related to users.

As an example of how to deploy AAA Accounting, we will assume we want to audit all privilege mode commands:

R1(config)#aaa accounting command 15 default start-stop group tacacs

Conclusion

As a CCNA Security candidate, it is important to keep in mind that we are not responsible for master complex configurations involving AAA. However, we must know that no matter what aspect of AAA we are configuring Authentication, Authorization or Accounting we are required to globally enable aaa new-model. Next, we must, to have a firm grasp of the basic command syntax used to deploy AAA, coupled with a solid understanding of the functional aspects of this suite of control mechanisms. Additionally, we cannot afford to let ourselves get confused by the similarities between TACACS+ and RADIUS. It's been my experience that two protocols that perform similar or the same operations can and often do provide the test designers with a wealth of exam questions.

vceplus-200-125    | boson-200-125    | training-cissp    | actualtests-cissp    | techexams-cissp    | gratisexams-300-075    | pearsonitcertification-210-260    | examsboost-210-260    | examsforall-210-260    | dumps4free-210-260    | reddit-210-260    | cisexams-352-001    | itexamfox-352-001    | passguaranteed-352-001    | passeasily-352-001    | freeccnastudyguide-200-120    | gocertify-200-120    | passcerty-200-120    | certifyguide-70-980    | dumpscollection-70-980    | examcollection-70-534    | cbtnuggets-210-065    | examfiles-400-051    | passitdump-400-051    | pearsonitcertification-70-462    | anderseide-70-347    | thomas-70-533    | research-1V0-605    | topix-102-400    | certdepot-EX200    | pearsonit-640-916    | itproguru-70-533    | reddit-100-105    | channel9-70-346    | anderseide-70-346    | theiia-IIA-CIA-PART3    | certificationHP-hp0-s41    | pearsonitcertification-640-916    | anderMicrosoft-70-534    | cathMicrosoft-70-462    | examcollection-cca-500    | techexams-gcih    | mslearn-70-346    | measureup-70-486    | pass4sure-hp0-s41    | iiba-640-916    | itsecurity-sscp    | cbtnuggets-300-320    | blogged-70-486    | pass4sure-IIA-CIA-PART1    | cbtnuggets-100-101    | developerhandbook-70-486    | lpicisco-101    | mylearn-1V0-605    | tomsitpro-cism    | gnosis-101    | channel9Mic-70-534    | ipass-IIA-CIA-PART1    | forcerts-70-417    | tests-sy0-401    | ipasstheciaexam-IIA-CIA-PART3    | mostcisco-300-135    | buildazure-70-533    | cloudera-cca-500    | pdf4cert-2v0-621    | f5cisco-101    | gocertify-1z0-062    | quora-640-916    | micrcosoft-70-480    | brain2pass-70-417    | examcompass-sy0-401    | global-EX200    | iassc-ICGB    | vceplus-300-115    | quizlet-810-403    | cbtnuggets-70-697    | educationOracle-1Z0-434    | channel9-70-534    | officialcerts-400-051    | examsboost-IIA-CIA-PART1    | networktut-300-135    | teststarter-300-206    | pluralsight-70-486    | coding-70-486    | freeccna-100-101    | digitaltut-300-101    | iiba-CBAP    | virtuallymikebrown-640-916    | isaca-cism    | whizlabs-pmp    | techexams-70-980    | ciscopress-300-115    | techtarget-cism    | pearsonitcertification-300-070    | testking-2v0-621    | isacaNew-cism    | simplilearn-pmi-rmp    | simplilearn-pmp    | educationOracle-1z0-809    | education-1z0-809    | teachertube-1Z0-434    | villanovau-CBAP    | quora-300-206    | certifyguide-300-208    | cbtnuggets-100-105    | flydumps-70-417    | gratisexams-1V0-605    | ituonline-1z0-062    | techexams-cas-002    | simplilearn-70-534    | pluralsight-70-697    | theiia-IIA-CIA-PART1    | itexamtips-400-051    | pearsonitcertification-EX200    | pluralsight-70-480    | learn-hp0-s42    | giac-gpen    | mindhub-102-400    | coursesmsu-CBAP    | examsforall-2v0-621    | developerhandbook-70-487    | root-EX200    | coderanch-1z0-809    | getfreedumps-1z0-062    | comptia-cas-002    | quora-1z0-809    | boson-300-135    | killtest-2v0-621    | learncia-IIA-CIA-PART3    | computer-gcih    | universitycloudera-cca-500    | itexamrun-70-410    | certificationHPv2-hp0-s41    | certskills-100-105    | skipitnow-70-417    | gocertify-sy0-401    | prep4sure-70-417    | simplilearn-cisa    |
http://www.pmsas.pr.gov.br/wp-content/    | http://www.pmsas.pr.gov.br/wp-content/    |