|
|
The access service security paradigm presented in this guide uses the authentication, authorization, and accounting (AAA) facility:
This chapter describes how to configure security using a local database resident on the access server or using a remote security database for Terminal Access Controller Access Control System (TACACS+) and Remote Authentication Dial-In User Service (RADIUS). To understand the concept of local versus remote authentication, refer to the section "Local Versus Remote Server Authentication" later in this chapter.
This chapter includes the following sections:
![]() | Caution This chapter does not provide a comprehensive security overview. For example, it does not describe how to configure TACACS, Extended TACACS, Kerberos, or access lists. It presents the most commonly used security mechanisms to prevent unauthenticated and unauthorized access to network resources through Cisco access servers. For a comprehensive overview of Cisco security tools, refer to the Security Configuration Guide. This document is available on the Documentation CD-ROM that accompanied your access server, on the World Wide Web from the Cisco home page, or you can order a printed copy. |
This chapter assumes the following:
This section describes the differences between local and remote security databases and the basic authentication process for each. Remote security databases described in this chapter include TACACS+ and RADIUS.
Generally the size of the network and type of corporate security policies and control determines whether you use a local or remote security database.
If you have one or two access servers providing access to your network, you should store username and password security information on the Cisco access server. This is referred to as local authentication. See Figure 4-1.
A local security database is useful if you have very few access servers providing network access. A local security database does not require a separate (and costly) security server.
As your network expands, you need a centralized security database that provides username and password information to each of the access servers on the network. This centralized security database resides in a security server. See Figure 4-2.
An example of a security server is the CiscoSecure Access Control Server product from Cisco Systems, Inc. CiscoSecure Access Control Server is a UNIX security daemon, which enables administrators to create databases that define network users and their privileges. CiscoSecure uses a central database that stores user and group profiles with authentication and authorization information.
The Cisco AS5300 exchanges user authentication information with a TACACS+ or RADIUS database on the security server by transmitting encrypted TACACS+ or RADIUS packets across the network.
For specific information about the interaction between security servers and access servers, refer to the Security Configuration Guide. This document is available on the World Wide Web from Cisco's home page, on the Documentation CD-ROM that accompanied your access server, or you can order a printed copy.
A remote, centralized security database is useful when you have a large number of access servers providing network access. It prevents having to update each access server with new or changed authentication and authorization information for potentially hundreds of thousands of dial-in network users. A centralized security database also helps establish consistent remote access policies throughout a corporation.
You can use the AAA facility to authenticate users with either a local or a remote security database. Whether you maintain a local or remote security database, or use TACACS+ or RADIUS authentication and authorization, the process of configuring the access server for these different databases and protocols is similar. The basic process of configuring the Cisco IOS software for authentication requires the following tasks:
The first step to configuring authentication is to secure access to privileged EXEC (enable) mode. Enable mode provides access to configuration mode, which enables any type of configuration change to the access server. To secure Privileged EXEC mode, use one of the commands listed in Table 4-1.
| Command | Description |
|---|---|
enable password <password>
| Requires that network administrators enter a password to access privileged EXEC mode. Do not provide access to users who are not administrators. |
enable secret <password>
| Specifies a secret password that is encrypted, so that the password cannot be read when crossing a network. After you enter this command, the encryption cannot be reversed. The encrypted version of the password appears in output of the show running-config and show startup-config commands. The enable secret password has precedence over the enable password. Do not enter the same password as the enable password. If the two passwords are the same, the enable secret password is not a secret, because the enable password is not encrypted and appears in output of show running-config and show startup-config commands. |
For more information about the enable password and enable secret commands and their complete syntax, refer to the Security Command Reference. This document is available on the World Wide Web from Cisco's home page, on the Documentation CD-ROM that accompanied your access server, or you can order a printed copy.
To enter an encryption type with the enable secret command, follow the steps listed in Table 4-2.
| Step | Command | Description |
|---|---|---|
| 1 | 5300> enable
| Enter enable mode.
Enter the password. You have entered enable mode when the prompt changes to |
| 2 | 5300# config term
| Enter global configuration mode. You have entered global configuration mode when the prompt changes to 5300(config)#.
|
| 3 | 5300(config)# enable secret guessme
| Enter a secret enable password. This password provides access to privileged EXEC mode. Substitute your own enable secret instead of using the guessme password. |
| 4 | 5300(config-if)# end
| Return to privileged EXEC mode.
This message is normal and does not indicate an error. |
| 5 | 5300# show running-config
. . | View the encrypted password. In this example, the encrypted password follows "enable secret 5" and is shown as "$1$h7dd$VTNs4.BAfQMUU0Lrvw 6570." |
| 6 | 5300# config term
| Re-enter global configuration mode. You have entered global configuration mode when the prompt changes to 5300(config)#.
|
| 7 | 5300(config)# enable secret 5 $1$h7dd$VTNs4.BAfQMUU0Lrvw6570
| Enter the encryption type (5 is the only valid encryption type for enable secret password). Then copy and paste in the encrypted version of the password that was displayed in the output of the show running-config command in Step 5. |
| 8 | 5300(config)# end
| Return to privileged EXEC mode.
This message is normal and does not indicate an error. |
| 9 |
5300# |
Save the configuration changes to NVRAM so that they are not lost during resets, power cycles, or power outages. |
You can also specify additional protection for privileged EXEC mode:
For more information about these security tools, refer to the Security Configuration Guide. This document is available on the World Wide Web from Cisco's home page, on the Documentation CD-ROM that accompanied your access server, or you can order a printed copy.
This section describes the Cisco IOS software commands that enable the access server to communicate with a security server. This process is similar for communicating with TACACS+ and RADIUS servers.
If you are using local authentication, refer to the section "Enabling AAA Globally on the Access Server," later in this chapter.
If you are using a remote security server for authentication and authorization, you must configure the security server before performing the tasks described in this chapter. The section "Security Examples" at the end of this chapter shows some typical TACACS+ and RADIUS server entries corresponding to the access server security configurations.
To enable communication between the TACACS+ security (database) server and the access server, enter the commands listed in Table 4-3.
| Step | Command | Description |
|---|---|---|
| 1 | 5300> enable
| Enter enable mode.
Enter the password. You have entered enable mode when the prompt changes to |
| 2 | 5300# config term
| Enter global configuration mode. You have entered global configuration mode when the prompt changes to 5300(config)#.
|
| 3 | 5300(config)# tacacs-server host alcatraz
| Enter the IP address or host name of the remote TACACS+ server host. The host is typically a UNIX system running TACACS+ software. In this example, the host name is alcatraz. |
| 4 | 5300(config)# tacacs-server key abra2cad
| Enter a shared secret text string to be used between the access server and the TACACS+ server. The access server and TACACS+ server use the shared secret text string to encrypt passwords and exchange responses. In this example, the shared secret text string is abra2cad. |
| 5 | 5300(config)# end
| Return to privileged EXEC mode.
This message is normal and does not indicate an error. |
| 6 |
5300# |
Save the configuration changes to NVRAM so that they are not lost during resets, power cycles, or power outages. |
For more information about these commands, refer to the Security Command Reference. This document is available on the World Wide Web from Cisco's home page, on the Documentation CD-ROM that accompanied your access server, or you can order a printed copy.
To enable communication between the RADIUS security (database) server and the access server, enter the commands listed in Table 4-4.
| Step | Command | Description |
|---|---|---|
| 1 | 5300> enable
| Enter enable mode.
Enter the password. You have entered enable mode when the prompt changes to |
| 2 | 5300# config term
| Enter global configuration mode. You have entered global configuration mode when the prompt changes to 5300(config)#.
|
| 3 | 5300(config)# radius-server host alcatraz
| Enter the IP address or host name of the remote RADIUS server host. This host is normally a UNIX system running RADIUS software. In this example, the host name is alcatraz. |
| 4 | 5300(config)# radius-server key abra2cad
| Specifies a shared secret text string used between the access server and the RADIUS server. The access server and RADIUS server use this text string to encrypt passwords and exchange responses. In this example, the shared secret text string is abra2cad. |
| 5 | 5300(config)# end
| Return to privileged EXEC mode.
This message is normal and does not indicate an error. |
You can use any of the following optional commands to interact with the RADIUS server host:
For more information about these commands, refer to the Security Command Reference. This document is available on the World Wide Web from Cisco's home page, on the Documentation CD-ROM that accompanied your access server, or you can order a printed copy.
On most TACACS+ security servers, there are three ways to authenticate a user for login:
The following is the configuration for global authentication:
user = spaulson {global = cleartext "spaulson global password"}
To assign different passwords for ARAP, CHAP, and a normal login, you must enter a string for each user. Each string must specify the security protocols, state whether the password is cleartext, and specify if the authentication is performed via a DES card. The following example shows a user aaaa, who has authentication configured for ARAP, CHAP, and login. The user's ARAP and CHAP passwords, "arap password" and "chap password," are shown in cleartext. The login password has been encrypted.
user = aaaa {arap = cleartext "arap password"
chap = cleartext "chap password"
login = des XQj4892fjk}
The default authentication is to deny authentication. You can change this at the top level of the configuration file to have the default use password (5) file, by issuing the following command:
default authentication = /etc/passwd
user= bbbb {login = skey}
On the access server, configure authentication on all lines including the vty and console lines by entering the following commands, beginning in privileged EXEC mode:
5300#configure terminal5300(config)#aaa new-model5300(config)#aaa authentication login default tacacs+ enable
![]() | Caution When you enter the aaa authentication login default tacacs+ enable command, you are specifying that if your TACACS+ server fails to respond (because it is set up incorrectly), you can log in to the access server by using your enable password. If you do not have an enable password set on the access server, you will not be able to log in to it until you have a functioning TACACS+ daemon configured with usernames and passwords. The enable password in this case is a last-resort authentication method. You can also specify none as the last-resort method, which means that no authentication is required if all other methods failed. |
To use the AAA security facility in the Cisco IOS software, you must enter the aaa new-model command from global configuration mode.
When you enter the aaa new-model command, all lines on the access server receive the implicit login authentication default method list, and all interfaces with PPP enabled have an implicit ppp authentication pap default method list applied.
![]() | Caution If you intend to authenticate users via a security server, make sure you do not inadvertently lock yourself out of the access server ports after you enter the aaa new-model command. Enter line configuration mode and enter the aaa authentication login default tacacs+ enable global configuration command. This command specifies that if your TACACS+ (or RADIUS) server is not functioning properly, you can enter your enable password to log in to the access server. In general, make sure you have a last-resort access method before you are certain that your security server is set up and functioning properly. For more information about the aaa authentication command, refer to the next section "Defining Authentication Method Lists." |
For example, enter the following commands to enable AAA in the Cisco IOS software:
5300#configure terminal5300(config)#aaa new-model
After you enable AAA globally on the access server, you need to define authentication method lists, which you then apply to lines and interfaces. These authentication method lists are security profiles that indicate the protocol (ARAP or PPP) or login and authentication method (TACACS+, RADIUS, or local authentication).
To define an authentication method list, follow these steps, which are described in detail in the next sections:
Step 1 Enter the aaa authentication command.
Step 2 Specify protocol (ARAP or PPP) or login authentication.
Step 3 Identify a list name or default. A list name is any alphanumeric string you choose. You assign different authentication methods to different named lists.
Step 4 Specify the authentication method. You can specify multiple methods, such as tacacs+, followed by local in case a TACACS+ server is not available on the network.
Step 5 Populate the local username database if you specified local as the authentication method (or one of the authentication methods). To use a local username database, you must enter the username global configuration command. Refer to the section "Populate the Local Username Database if Necessary," later in this chapter.
After defining these authentication method lists, apply them to one of the following:
The section "Applying Authentication Method Lists" later in this chapter describes how to apply these lists.
To define an authentication method list, start by entering the aaa authentication global configuration command, as shown in the following example:
5300#configure terminal5300(config)#aaa authentication
After you enter aaa authentication, you must specify one of the following dial-in protocols as applicable for your network:
You can specify only one dial-in protocol per authentication method list. However, you can create multiple authentication method lists with each of these options. You must give each list a different name, as described in the next section "Identify a List Name."
If you specify the ppp option, the default authentication method for PPP is PAP. For greater security, specify CHAP. The full command is aaa authentication ppp chap. If you specify the arap option, the authentication method built into ARA is used. The full command is aaa authentication arap.
For example, if you specify PPP authentication, the configuration looks like this:
5300#configure terminal5300(config)#aaa authentication ppp
A list name identifies each authentication list. You can choose either to use the keyword default, or choose any other name that describes the authentication list. For example, you might give it the name ppp-radius if you intend to apply it to interfaces configured for PPP and RADIUS authentication. The list name can be any alphanumeric string. The default method list is automatically applied to all lines and interfaces. Named method lists must be applied to specific lines or interfaces.
You can create different authentication method lists and apply them to lines and interfaces selectively. You can even create a named authentication method list that you do not apply to a line or interface, but which you intend to apply at some later point, such as when you deploy a new login method for users.
After you define a list name, you must identify additional security attributes (such as local authentication versus TACACS+ or RADIUS).
In the following example, the default authentication method list for PPP dial-in clients uses the local security database:
5300#configure terminal5300(config)#aaa authentication ppp default
In the following example, the PPP authentication method list name is insecure:
5300#configure terminal5300(config)#aaa authentication ppp insecure
In the following example, the ARA authentication method list name is callback (because asynchronous callback is used on the access server):
5300#configure terminal5300(config)#aaa authentication arap callback
In the following example, the login authentication method list name is deveng:
5300#configure terminal5300(config)#aaa authentication login deveng
After you identify a list name, you must specify an authentication method. An authentication method identifies how users are authenticated. For example, will users be authenticated by a local security database resident on the access server (local method)? Will they be authenticated by a remote security database, such as by a TACACS+ or RADIUS daemon? Will guest access to an AppleTalk network be permitted?
Authentication methods are defined with optional keywords in the aaa authentication command. See Tables 4-5 and 4-6.
| Method | Description |
|---|---|
| if-needed | Authenticates only if not already authenticated. No duplicate authentication. |
| krb5 | Specifies Kerberos 5 authentication. |
| local | Uses the local username database in the access server. This is defined with the username global configuration command. |
| none | No authentication is required. Do not prompt for a username or password. |
| radius | Use RADIUS authentication as defined on a RADIUS security server. |
| tacacs+ | Use TACACS+ authentication as defined on a TACACS+ security server. |
![]() | Time Saver If you are not sure whether you should use TACACS+ or RADIUS, here are some comparisons: TACACS+ encrypts the entire payload of packets passed across the network, whereas RADIUS only encrypts the password when it crosses the network. TACACS+ can query the security server multiple times, whereas a RADIUS server gives one response only and is therefore not as flexible regarding per-user authentication and authorization attempts. Moreover, RADIUS does not support authentication of ARA. |
| Method | Description |
|---|---|
| auth-guest | Allows guests to log in only if they have already been authenticated at the EXEC. |
| guest | Allows guests to log in. |
| line | Uses the line (login) password for authentication. |
| local | Uses the local username database in the access server for authentication. This database is defined with the username global configuration command. |
| tacacs+ | Use TACACS+ authentication as defined on a TACACS+ security server. |
You can specify multiple authentication methods for each authentication list. The following example authentication method list for PPP first queries a TACACS+ server, then a RADIUS server, then the local security database. Multiple authentication methods can be useful if you have multiple types of security servers on the network and one or more types of security server do not respond:
5300(config)# aaa authentication ppp testbed tacacs+ radius local
If you specify more than one authentication method and the first method (TACACS+ in the previous example) is not available, the Cisco IOS software attempts to authenticate using the next method (such as RADIUS). If in the previous example, the RADIUS server has no information about the user, or if no RADIUS server can be found, the user is authenticated using the local username database that was populated with the username command.
However, if authentication fails using the first method listed, the Cisco IOS software does not permit access. It does not attempt to authenticate using the subsequent security methods if the user entered the incorrect password.
If you specify local as the security method, you must specify username profiles for each user who might log in. An example of specifying local authentication is as follows:
5300(config)# aaa authentication login deveng local
This command specifies that any time a user attempts to log in to a line on an access server, the Cisco IOS software checks the username database. To create a local username database, define username profiles using the username global configuration command.
The following example shows how to use the username command for a user cpatino with password n1vriti:
5300(config)# username cpatino password n1vriti
The show running-config command shows the encrypted version of the password, as follows:
5300# show running-config
Building configuration...
Current configuration:
!
version 11.1
! most of config omitted
username cpatino password 7 0215055500070C294D
This section shows some examples of authentication lists.
The following example creates a local authentication list for users logging in to any line on the access server:
5300(config)# aaa authentication login default local
The following example specifies login authentication using RADIUS (the RADIUS daemon is polled for authentication profiles):
5300(config)# aaa authentication login default radius
The following example specifies login authentication using TACACS+ (the TACACS+ daemon is polled for authentication profiles):
5300(config)# aaa authentication login default tacacs+
The following example creates a local authentication list for Macintosh users dialing in to an AppleTalk network through the access server:
5300(config)# aaa authentication arap default local
The following example specifies that Macintosh users dialing in to an AppleTalk network through the access server be authenticated by a TACACS+ daemon:
5300(config)# aaa authentication arap default tacacs+
The following example creates an authentication method list that:
5300(config)# aaa authentication arap default auth-guest tacacs+ line local
The following example creates a TACACS+ authentication list for users connecting to interfaces configured for dial-in using PPP. The name of the list is marketing. This example specifies that a remote TACACS+ daemon be used as the security database. If this security database is not available, the Cisco IOS software then polls the RADIUS daemon. Users are not authenticated if they are already authenticated on a tty line.
5300(config)# aaa authentication ppp marketing if-needed tacacs+ radius
In this example, default can be substituted for marketing if the administrator wants this list to be the default list.
As described in the "Defining Authentication Method Lists" section earlier in this chapter, the aaa authentication global configuration command creates authentication method lists or profiles. You apply these authentication method lists to lines or interfaces by issuing the login authentication, arap authentication, or ppp authentication command, as described in Table 4-7.
| Interface and Line Command | Action | Port to which List is Applied | Corresponding Global Configuration Command |
|---|---|---|---|
| login authentication | Logs directly in to the access server | Console port or vty lines | aaa authentication login |
| arap authentication | Uses ARA to access AppleTalk network resources | tty line | aaa authentication arap |
| ppp authentication 1 | Uses PPP to access IP or IPX network resources | Interface | aaa authentication ppp |
You can create more than one authentication list or profile for login and protocol authentication and apply them to different lines or interfaces. The following examples show the line or interface authentication commands that correspond to the aaa authentication global configuration command.
The following example shows the default login authentication list applied to the console port and the default virtual terminal (vty) lines on the access server:
5300(config)#aaa authentication login default local5300(config)#line console 05300(config-line)#login authentication default5300(config-line)#line vty 0 45300(config-line)#login authentication default
In the following example, the login authentication list named rtp2-office, which uses RADIUS authentication, is created. It is applied to all 54 lines on a Cisco AS5300 access server configured with a dual T1 PRI card, including the console (CON) port, the 48 physical asynchronous (tty) lines, the auxiliary (AUX) port, and 5 virtual terminal (vty) lines:
5300(config)#aaa authentication login rtp2-office radius5300(config)#line 0 545300(config-line)#login authentication rtp2-office
The following sample output shows lines and their status on the access server:
5300# sho line
Tty Typ Tx/Rx A Modem Roty AccO AccI Uses Noise Overruns
* 0 CTY - - - - - 0 0 0/0
I 1 TTY 57600/57600 - inout - - - 0 0 0/0
I 2 TTY 57600/57600 - inout - - - 0 0 0/0
...
I 48 TTY 57600/57600 - inout - - - 0 0 0/0
49 AUX 9600/9600 - - - - - 0 0 0/0
50 VTY - - - - - 0 0 0/0
51 VTY - - - - - 0 0 0/0
52 VTY - - - - - 0 0 0/0
53 VTY - - - - - 0 0 0/0
54 VTY - - - - - 0 0 0/0
In the following example, the ARA authentication list bldg-d-list is created, then applied to lines 1 through 48 (the physical asynchronous lines) on an access server:
5300(config)#aaa authentication arap bldg-d-list auth-guest tacacs+5300(config)#line 1 485300(config-line)#arap authentication bldg-d-list
The following example creates the PPP authentication list called marketing, which uses TACACS+, then RADIUS authentication. The marketing list requires authentication only if the user has not already been authenticated on another line. It is then applied to asynchronous lines 1 through 48 on an access server and uses CHAP authentication, instead of the default of PAP:
5300(config)#aaa authentication ppp marketing if-needed tacacs+ radius5300(config)#line 1 485300(config-line)#ppp authentication chap marketingConfiguring Authorization
You can configure the access server to restrict user access to the network so that users can only perform certain functions after successful authentication. As with authentication, authorization can be used with either a local or remote security database. This guide describes only remote security server authorization.
A typical configuration most likely uses the EXEC facility and network authorization. EXEC authorization restricts access to EXEC mode, and network authorization restricts access to network services, including PPP and ARA.
Authorization must be configured on both the access server and the security daemon. The default authorization is different on the access server and the security server:
![]() | Time Saver If authentication has not been set up for a user, per-user authorization attributes are not enabled for that user. That is, if you want a user to obtain authorization before gaining access to network resources, you must first require that the user provide authentication. For example, if you want to specify the aaa authorization network tacacs+ (or radius) command, you must first specify the aaa authentication {ppp | arap} default if-needed tacacs+ (or radius) command. |
You typically have three methods for configuring default authorization on the security server:
default authorization = permit
default service = permit
(a) If the AV pair from the access server is mandatory, look for an exact match in the daemon's mandatory list. If found, add the AV pair to the output.
(b) If an exact match doesn't exist, look in the daemon's optional list for the first attribute match. If found, add the access server AV pair to the output.
(c) If no attribute match exists, deny the command if the default is to deny, or if the default is permit, add the access server AV pair to the output.
(d) If the AV pair from the access server is optional, look for an exact AV match in the mandatory list. If found, add the daemon's AV pair to the output.
(e) If not found, look for the first attribute match in the mandatory list. If found, add the daemon's AV pair to the output.
(f) If no mandatory match exists, look for an exact AV pair match among the daemon's optional AV pairs. If found, add the daemon's matching AV pair to the output.
(g) If no exact match exists, locate the first attribute match among the daemon's optional AV pairs. If found, add the daemon's matching AV pair to the output.
(h) If no match is found, delete the AV pair if the default is to deny, or if the default is permit, add the access server AV pair to the output.
(i) If there is no attribute match already in the output list after all AV pairs have been processed for each mandatory daemon AV pair, add the AV pair (add only one AV pair for each mandatory attribute).
To specify network authorization (preventing unauthorized users from accessing network resources) enter the aaa authorization network command. To restrict users from logging into the EXEC facility, enter the aaa authorization exec command. For example:
5300(config)#aaa authorization network5300(config)#aaa authorization exec
Authorization methods are defined as optional keywords in the aaa authorization command. You can specify any of the authorization methods listed in Table 4-8 for both network and EXEC authorization.
| Method | Description |
|---|---|
| if-authenticated | User is authorized if already authenticated. |
| none | Authorization always succeeds. |
| local | Uses the local database for authorization. The local database is created using the username privilege command to assign users to a privilege level from 0 to 15 and the privilege level command to assign commands to these different levels. |
| radius | Uses RADIUS authorization as defined on a RADIUS server. |
| tacacs+ | Uses TACACS+ authorization as defined on a TACACS+ server. |
When you configure authorization, you must ensure that the parameters established on the access server correspond with those set on the TACACS+ server.
The following example uses a TACACS+ server to authorize the use of network services, including PPP and ARA. If the TACACS+ server is not available or has no information about a user, no authorization is performed and the user can use all network services:
5300(config)# aaa authorization network tacacs+ none
The following example permits the user to run the EXEC process if the user is already authenticated. If the user is not already authenticated, the Cisco IOS software defers to a RADIUS server for authorization information:
5300(config)# aaa authorization exec if-authenticated radius
The following example configures network authorization. If the TACACS+ server does not respond or has no information about the username being authorized, the RADIUS server is polled for authorization information for the user. If the RADIUS server does not respond, the user still can access all network resources without authorization requirements.
5300(config)# aaa authorization network tacacs+ radius none
This series of examples shows complete security configuration components of a configuration file on an access server. Each of these examples shows authentication and authorization.
This sample configuration uses AAA to configure default authentication using a local security database on an access server. All lines and interfaces have the default authentication lists applied. Users aaaa, bbbb, and cccc have been assigned privilege level 7, which prevents them from issuing the ppp, arap, and slip commands, because these commands have been assigned to privilege level 8.
aaa new-model aaa authentication login default local aaa authentication arap default local aaa authentication ppp default local aaa authorization exec local aaa authorization network local aaa authorization ! username aaaa privilege exec level 7 privilege network level 8 password 7 095E470B1110 username bbbb privilege network level 7 password 7 0215055500070C294D username cccc privilege network level 7 password 7 095E4F10140A1916 ! privilege exec level 8 ppp privilege exec level 8 arap privilege exec level 8 slip line console 0 login authentication default ! line 1 48 arap authentication default ! interface Group-Async1 ppp authentication chap default group-range 1 48
With this configuration, the sign-on dialog from a remote PC appears as follows:
atdt5551234 CONNECT 14400/ARQ/V32/LAPM/V42BIS User Access Verification Username:aaaaPassword: <password> 5300>enablePassword: 5300#
The following example shows how to create and apply authentication lists:
hostname 5300 ! tacacs-server host maui tacacs-server key shepard4 ! aaa authentication login rtp2-office tacacs+ aaa authentication ppp marketing if-needed tacacs+ aaa authentication arap kona-coast-office tacacs+ ! line console0 login authentication rtp2-office ! interface group-async0 ppp authentication chap marketing group-range 1 48 ! line 1 48 arap authentication kona-coast-office RADIUS Example for Login and PPP
The following example shows how to create authentication lists:
radius-server host server219 radius-server key BaBe218 ! privilege exec level 14 configure privilege exec level 14 reload privilege exec level 8 arap privilege exec level 8 ppp ! aaa authentication login fly radius aaa authentication ppp maaaa if-needed radius aaa authorization network radius aaa authorization exec radius ! line 1 54 login authentication fly ! interface group-async658 ppp authentication chap maaaa group-range 1 48
|
|