http://www.pro-bono-publico.de/projects/tac_plus.html

TACACS+

Marc Huber

$Id: manual.xml,v 1.254 2010/08/15 11:08:16 marc Exp marc $

Table of Contents
1. Introduction
1.1. Download
2. Definitions and Terms
2.1. TACACS, XTACACS and TACACS+
3. Operation
3.1. Command line syntax
3.2. Signals
3.3. Event mechanism selection
3.4. Sample Configuration
4. TACACS+ Configuration Syntax
4.1. Global Configuration
4.1.1. Railroad Diagram
4.2. Configuring Hosts
4.2.1. Inheritance and Hosts
4.2.2. Railroad Diagrams
4.2.3. Example
4.3. Configuring Time Ranges
4.3.1. Railroad Diagrams
4.4. Configuring Access Control Lists
4.4.1. Railroad Diagrams
4.5. Scripts
4.5.1. Syntax
4.6. Configuring Users and Groups
4.6.1. Railroad Diagrams
4.6.2. Service Definitions
4.6.3. Host-group specific services
4.6.4. CLI Contexts
4.6.5. Examples
4.6.6. Railroad Diagrams
4.6.7. Configuring Non-local Users via MAVIS
4.6.8. Configuring Local Users for MAVIS authentication
4.6.9. Recursion and Groups
4.6.10. Configuring User Authentication
4.6.11. Configuring Expiry Dates
4.6.12. Configuring Authentication on the NAS
4.6.13. Configuring Authorization
4.6.14. Authorizing Commands
4.6.15. Authorizing EXEC (SHELL) Startup
4.6.16. Authorizing EXEC, SLIP, PPP and ARAP services
4.6.17. The Authorization Process
4.6.18. Authorization Relies on Authentication
4.6.19. Configuring Service Authorization
4.6.20. Examples
4.6.21. Configuring Authorization on the NAS
4.7. Accounting
4.7.1. Daemon Configuration
4.7.2. NAS Configuration
5. MAVIS Configuration
5.1. LDAP Backend
5.1.1. LDAP Custom Schema Backend
5.1.2. Active Directory Backend
5.1.3. Generic LDAP Backend
5.2. System Password Backends
5.3. RADIUS Backend
5.3.1. Sample Configuration
5.4. Experimental Backends
5.5. Error Handling
6. Debugging Hints
6.1. Debugging Configuration Files
6.2. Debugging Regular Expressions
7. Frequently Asked Questions
8. Canned Configurations
8.1. Login Authentication
8.2. Command Authorization
8.3. Network Access Authorization
8.4. ARAP
8.5. Callback
9. Authorization AV pairs
10. Upgrading from Previous Releases
11. Bugs
12. References
13. Copyrights and Acknowledgements

1. Introduction

tac_plus is a TACACS+ daemon. It provides Cisco Systems routers and access servers with authentication, authorisation and accounting services.

This version is a major rewrite of the original Cisco source code. Key features include:


1.1. Download

Source and documentation are available from http://www.pro-bono-publico.de/projects/.


2. Definitions and Terms

The following chapters utilize a couple of terms that may need further explanation:

NAS A Network Access Server, e.g. a Cisco box, or any other client which makes TACACS+ authentication and authorization requests, or generates TACACS+ accounting packets.
Daemon A program which services network requests for authentication and authorization, verifies identities, grants or denies authorizations, and logs accounting records.
AV pairs Strings of text in the form attribute=value, sent between a NAS and a TACACS+ daemon as part of the TACACS+ protocol.

Since a NAS is sometimes referred to as a server, and a daemon is also often referred to as a server, the term server has been avoided here in favor of the less ambiguous terms NAS and Daemon.


2.1. TACACS, XTACACS and TACACS+

As a tidbit of historical value, there are about three versions of authentication protocol that people may refer to as TACACS:

The first is ordinary TACACS, which was the first one offered on Cisco boxes and has been in use for many years. The second is an extension to the first, commonly called Extended TACACS or XTACACS, introduced in 1990. Both are UDP based services.

The third one, and that's the version virtually everybody uses right now, is TACACS+ or tac_plus, which is what is documented here. TACACS+ is based on TCP and as such not compatible with any previous versions of TACACS.

Have a look at Single-User Network Access Security TACACS+ for a comprehensive overview and the motiviations behind TACACS+.

Apparently, at least one vendor did implement TACACS+, but refers to it as HWTACACS. Chances are that there are no technical (but possibly marketing or legal) reasons behind that. Documentation is scarce.


3. Operation

This section gives a brief and basic overview how to run tac_plus.

In earlier versions, tac_plus wasn't a standalone program but had to be invoked by spawnd. This has changed, as spawnd functionality is now part of the tac_plus binary. However, using a dedicated spawnd process is still possible and, more importantly, the spawnd configuration options and documentation remain valid.

tac_plus may use auxilliary MAVIS backend modules for authentication and authorization.


3.1. Command line syntax

The only mandatory argument is the path to the configuration file:

tac_plus [ -P ] [ -d level ]  [ -i child_id ] configuration-file [ id ]

Keep the -P option in mind ‐ it is imperative that the configuration file supplied is syntactically correct, as the daemon won't start if there are any parsing errors at start-up.

The -d switch enables debugging. You most likely don't want to use this. Read the source if you need to.

The -i option is only honoured if the build-in spawnd functionality is used. In that case, it selects the configuration ID for tac_plus, while the optional last argument id sets the ID of the spawnd configuration section.


3.2. Signals

tac_plus intercepts the SIGHUP signal. Upon reception of this signal, the daemon no longer accepts new connections from spawnd, but continues to serve the existing connections. The daemon will terminate when idle.


3.3. Event mechanism selection

Several level-triggered event mechanisms are supported. By default, the one best suited for your operating system will be used. However, you may set the environment variable IO_POLL_MECHANISM to select a specific one.

The following event mechanisms are supported (in order of preference):

  • port (Sun Solaris 10 and higher only, IO_POLL_MECHANISM=32)

  • kqueue (*BSD and Darwin only, IO_POLL_MECHANISM=1)

  • /dev/poll (Sun Solaris only, IO_POLL_MECHANISM=2)

  • epoll (Linux only, IO_POLL_MECHANISM=4)

  • poll (IO_POLL_MECHANISM=8)

  • select (IO_POLL_MECHANISM=16)


3.4. Sample Configuration

A single configuration file is sufficient for configuring spawnd, tac_plus and the MAVIS authentication and authorization backends.

The following spawnd configuration stanza accepts connections on TCP ports 49 and 4949 and forwards these to one of the tac_plus processes. The tac_plus configuration configures a couple of user groups, has one single user defined and relies on the MAVIS backend for additional users.

#!/usr/local/bin/tac_plus
id = spawnd {
    listen = { port = 49 }
    listen = { port = 4949 }
    # see the spawnd configuration guide for further configuration options
}

id = tac_plus {
    accounting log = /var/log/tac_plus/%Y/%m/%d.log
    retire limit = 1000
    mavis module = external {
        exec = /usr/local/lib/mavis_tacplus.pl
        # see the MAVIS configuration manual for more options and other modules
    }
    login backend = mavis

    host = world {
        prompt = "\nHitherto shalt thou come, but no further. (Job 38.11)\n\n"
        key = QaWsEdRfTgY
        enable 15 = clear test
        address = 0.0.0.0/0
    }

    group = readwrite {
        default service = permit
        service = shell {
            default command = permit
            set priv-lvl = 15
        }
    }

    group = getconfig {
        default service = permit
        service = shell {
            set autocmd = "sho run"
            set priv-lvl = 15
        }
    }

    user = marc {
       login = crypt $1$xxxxxxxx$hDZPHghXe8XvoHeFdqUwm/
       member = readwrite@world
       member = getconfig@192.168.0.0/16
    }
}

4. TACACS+ Configuration Syntax

All the configuration directives below need to be enclosed within a

id = tac_plus { ... }

section.

Note Comments in Configuration Files
 

Comments can appear anywhere in the configuration file, starting with the # character and extending to the end of the current line. Should you need to disable this special meaning of the # character, e.g. if you have a password containing a # character, simply enclose the string containing it within double quotes.

The recommended order for writing a configuration file is

  1. global definitions

  2. hosts

  3. timespecs

  4. acls

  5. groups

  6. users

The reasoning behind that is pretty obvious: Some objects may reference other objects, and this only works if the latter are already defined.


4.1. Global Configuration

Global configuration options available are:

  • access log = file

    This specifies an access log file. file may contain strftime(3)-style character sequences, e.g.

    access log = /var/log/tac_plus/%Y/%m/%d.access
    

    to automate time-based log file switching. By default, the daemon will use your local time zone for time conversion. You can switch to a different one by using the time zone option (see below).

    Logging to commands is supported. E.g.

    access log = "|exec /usr/bin/logger"
    

    will pipe log messages to

    /bin/sh -c "exec /usr/bin/logger"
    

    (The exec isn't strictly necessary here, but avoids keeping an otherwise idle shell process around.)

    Standard behaviour for logging to files is to fcntl(2) lock the file during writing. If the underlying file system supports atomic appends this may not be necessary. Let file start with a > character to turn off file locking and switch logging to synchronous mode.

    Logging to syslogd can be enabled with

    access log = syslog
    

    This directive may appear multiple times.

  • accounting log = file

    This specifies a log file for accounting. file syntax is the same as with the access log directive.

  • authorization log = file

    This specifies a log file for command authorization. file syntax is the same as with the access log directive.

  • date format = string

    This defines a format string for date (and time) representation in subsequentially defined log files. Default:

    date format = ""%Y-%m-%d %H:%M:%S %z""
    
  • log separator = string

    This defines the CSV separator string for log entries in subsequentially defined log files. Default:

    log separator = "\t"
    
  • umask = mode

    This sets the file creation mode mask. Example:

    umask = 0640
    
  • retire limit = n

    The particular daemon instance will terminate after processing n requests. The spawnd instance will spawn a new instance if necessary.

  • retire timeout = s

    The particular daemon instance will terminate after s seconds. spawnd will spawn a new instance if necessary.

  • time zone = time-zone

    By default, the daemon uses your local system time zone to convert the internal system time to calendar time. This option sets the TZ environment variable to the time-zone argument. See your local tzset man page for details.

  • connection timeout = s

    Terminate a connection to a NAS after an idle period of at least s seconds.

  • userid = uid

    Run daemon under user id uid.

  • groupid = gid

    Run daemon under group id gid.

  • include = file

    Read and parse file. Shell wildcard patterns are expanded by glob(3).

  • working directory = directory

    Change the current working directory to directory.

  • coredump directory = directory

    Dump cores to directory. You really shouldn't need this.

  • user backend = mavis

    Get user data from the MAVIS backend. Without that directive, only locally defined users will be available and the MAVIS backend may be used for authenticating known users (with password = mavis or simlar) only.

  • pap backend = mavis

    Verify PAP passwords using the MAVIS backend. This needs to be set if you want to authenticate PAP requests using the MAVIS backend. If unset, the PAP password from the users' profile will be used.

    This directive implies user backend = mavis.

  • login backend = mavis [ chalresp [ noecho ] ] [ chpass ]

    Verify Login passwords using the MAVIS backend. This needs to be set if you want to authenticate PAP requests using the MAVIS backend. If unset, the login password from the users' profile will be used.

    This directive implies user backend = mavis.

    For use with OPIE-enabled MAVIS modules, add the chalresp keyword (and, optionally, add noecho, unless you want the typed-in response to display on the screen). Example:

    login backend = mavis chalresp noecho
    

    For non-local users, if the chpass attribute is set and the user provides an empty password at login, the user is given the option to change his password. This requires appropriate support in the MAVIS backend modules.

  • mavis module = module { ... }

    Load MAVIS module module. See the MAVIS documentation for configuration guidance.

  • mavis path = path

    Add path to the search-path for MAVIS modules.

  • mavis cache timeout = n

    Cache MAVIS authentication data for s seconds.

  • mavis noauthcache

    Disables password caching for MAVIS modules.

  • context timeout = s

    Clears context cache entries after s seconds of inactivity. Default: 3600 seconds.

  • dns cleanup period = s

    Remove unused DNS data from cache afters seconds. (Default: 8 hours.)

  • warning period = days

    Set warning period for password expiry to days.

  • password ( max-attempts = integer | backoff = seconds )

    backoff sets a backoff time for failed authentications. The daemon will wait for seconds seconds before returning a final authentication failure (password incorrect) message.

    The max-attempts parameter limits the number of Password: prompts per TACACS+ session at login. It currently defaults to 1, meaning that a typical login sequence with bad passwords would look like:

    > telnet 10.0.0.2
    Trying 10.0.0.2...
    Connected to 10.0.0.2.
    Escape character is '^]'.
    
    Welcome. Authorized Use Only.
    
    Username: admin
    Password: ***
    Password incorrect.
    
    
    Welcome. Authorized Use Only.
    
    Username: admin
    Password: ****
    Password incorrect.
    
    
    Welcome. Authorized Use Only.
    
    Username: admin
    Password: *
    Password incorrect.
    
    Connection closed by foreign host.
    

    Using, for example,

    password max-attempts = 3
    

    (the actual default in earlier versions was 4) would change this dialog to:

    > telnet 10.0.0.2
    Trying 10.0.0.2...
    Connected to 10.0.0.2.
    Escape character is '^]'.
    
    Welcome. Authorized Use Only.
    
    Username: admin
    Password: ***
    
    Password incorrect.
    Password: ****
    
    Password incorrect.
    Password: *****
    
    Password incorrect. Go away.
    
    
    Welcome. Authorized Use Only.
    
    Username:
    

    It's at the NAS's discretion to restart the authentication dialog with a new TACACS+ session or to close the (Telnet/SSH/...) session to the user if TACACS+ authentication fails.

  • type7-key = xlat

    While it's trivial to reverse-engineer the Type-7 algorithm, it's nevertheless not appropriate to hardcode the obscuration key in the server. That being said: if you set the correct Type-7 key, you can use Type-7 encrypted passwords in the configuration. Example:

    type7-key = "put the correct xlate key here"
    user = joe {
        login = 7 05AF8412FE8FB3312345
    }
    
  • anonymous-enable = ( permit | deny )

    Several broken TACACS+ implementations send no or an invalid username in enable packets. Setting this option to deny tries to enforce user authentication before enabling. This option defaults to permit.

    Alas, this may or may not work. In theory, the enable dialog should look somewhat like:

    Router> enable
    Username: me
    Password: *******
    Enable Password: **********
    Router#
    

    However, some implementations may resend the user password at the Enable Password: prompt. In that case you've got only two options: Either use

    enable = login
    

    which will omit the secondary password query and let the user enable with his login password, or permit anonymous enable (which is disabled by default) with

    anonymous-enable = permit
    

    and use enable passwords defined at host level.

  • single-connect ( may-close ) = ( yes | no )

    This directive may be used to permit or deny the single-connection feature. The may-close keyword tells the daemon to close a connection if it's unused (default: disabled). This directive may be overridden at host object level.


4.2. Configuring Hosts

The daemon will talk to known hosts only and reject connections from unknown ones.

If you want tac_plus to encrypt its packets (and you almost certainly do want this, as there can be usernames and passwords contained in there), then you'll have to specify an (non-empty) encryption key. The identical key must also be configured on any NAS which communicates with tac_plus.

To specify a global key, use a statement similar to

host = 0.0.0.0/0 {
    key = "your key here"
}

or, alternatively,

host = world {
    key = "your key here"
    address = 0.0.0.0/0
}

(where world is not a keyword, but just some arbitrary character string).

Tip Double Quotes
 

You only need double quotes on the daemon if your key contains spaces. Confusingly, even if your key does contain spaces, you should never use double quotes when you configure the matching key on the NAS.

The daemon will reject connections from hosts that have no encryption key defined.

Double quotes within double-quoted strings may be escaped using the backslash character \ (which can be escaped by itself), e.g.:

key = "quo\\te me\"."

translates to the ASCII sequence

quo\te me".

Any CIDR range within a host definition needs to to be unique, and the most specific definition will match. The requirement for unambiguousness is quite simply based on the fact that certain host object attributes (key, prompt, enable passwords) may only exist once.

On the NAS, you also need to configure the same key. Do this by issuing:

aaa new-model
tacacs-server host 192.168.0.1 single-connection key your key here

The optional single-connection parameter specifies that multiple sessions may use the same TCP/IP connection to the server.

Generally, the syntax for host declarations conforms to

host = [ realm realm ] name_or_ip-range { key-value pairs }

The optional realm tells the daemon to use the definition only for connections with a corresponding spawnd realm. For example,

id = spawnd { listen = { port = 49 } listen = { port = 4949 realm = somevendor } }
id = tac_plus {
    host world = { address = ::0/0 ... }
    host realm somevendor weirdrouters = { address = :0/0 ... }
    group adminA = { ... }
    group adminB = { ... }
    user = marc { member = adminA member = AdminB@weirdrouters }
}

makes group membership dependent on the address and/or port the NAS uses to contact the TACACS+ server. User marc will be a member of group adminA for network access servers connecting via port 49, and member of adminB for those using port 4949.

Hosts can be refered to by IP address or (with some exceptions) by name.

The key-value pairs permitted in host sections of the configuration file are

  • key = string

    As mentioned before, this sets the key used for encrypting the communication between server and NAS.

    During debugging, it may be convenient to temporarily switch off encryption by using an empty key:

    key = ""
    

    Be careful to remember to switch encryption back on again after you've finished debugging.

  • client-only = ( yes | no )

    For client-only = yes, this host declaration will be used as a NAC address (range/group) only. TACACS+ sessions originating from IP adresses matching this object will be refused.

    By default, this setting is inherited from a super-net and to all sub-networks. If set to yes, no TACACS+ session requests are permitted from IP addresses matching the object.

  • inherit = ( yes | no )

    If set to no, the current host declaration won't inherit configuration snippets (e.g.: key, enable passwords) from its supernet. Default is yes.

  • connection timeout = s

    Terminate a connection to this NAS after an idle period of at least s seconds.

  • name = string

    Assigns the name string to the host object. This, combined with the address keyword), may be used to form host groups. Don't use this attribute if you've already asigned a name after the initial host = statement, and take care to define hosts before users and groups, or group membership assignments may fail silently.

  • prompt = string

    Set the initial log-in prompt to string.

  • enable [ level ] = ( permit | deny | login | ( clear | crypt) password )

    This directive may be used to set host specific enable passwords, to use the login or to permit (without password) or refuse any enable attempt. Enable secrets defined here have a lower precedence than those defined at user- or group-level. level defaults to 15.

    Note Password Hashes
     

    You can use the openssl passwd utility to compute password hashes. For example,

    openssl passwd -1 clear_text_password
    

    returns a MD5 hash, while

    openssl passwd -crypt clear_text_password
    

    returns a DES hash.

    DES passwords are by design truncated to eight characters.

    You can enable via TACACS+ by configuring on the NAS:

    aaa authentication enable default group tacacs+ enable
    
  • template = ( address | name )

    This uses part of an existing host definition for address or name as template for the current host declaration. Only prompt, key, enable passwords and content are copied, and no recursive lookups take place.

  • address = cidr

    Adds the address range specified by cidr to the current host definition.

  • address file = file

    Add the addresses from file to the current host definition. Shell wildcard patterns are expanded by glob(3).

  • password ( max-attempts = integer | backoff = seconds )

    The max-attempts option sets the maximum number of Password: prompts per session. Likewise, backoff specifies the (host-specific) delay before returning a Password incorrect. message and closing the session.

    Setting these parameters here overrides the corresponding global options, which come with a more exhaustive explanation.

    backoff can be specified for both NAC and NAS host objects. If both are given, the smaller one wins.

  • anonymous-enable = ( permit | deny )

    Several broken TACACS+ implementations send no or an invalid username in enable packets. Setting this option to deny enforces user authentication before enabling. Setting this option here has precedence over the global option.

  • user = name

    This directive sets a default user name for connections sourced from hosts matching this host object. For example:

    host = nms { address = 1.2.3.4 user = nmsuser }
    

    will tell the daemon not to query for the user name for connections coming from 1.2.3.4, but to use nmsuser instead.

    Use this option with care. It may come handy while transitioning to a TACACS+ environment, but has several severe implications, the first one being that the router has no idea about the username, which implies that authorization via TACACS+ won't work.

  • dns reverse-lookup = ( yes | no )

    NAC ACLs support matching against the clients DNS reverse-lookup. Using this directive enables or disable NAC DNS lookups for the IP addresses in the host group.

  • single-connect ( may-close ) = ( yes | no )

    This directive may be used to permit or deny the single-connection feature for a particular host object. The may-close keyword tells the daemon to close the connection if it's unused.


4.2.1. Inheritance and Hosts

For host lookups, the daemon looks for the most specific host definition first. If that definition (or the requested value) doesn't exist, it looks for the next less-specific one. This process continues through the entire (IPv6) CIDR hierarchy, until a match is found.

In other words: For host parameters, the most specific host definition with that parameter defined matches.

For example, if a host 192.168.1.15 connects to the server, the server needs to know which encryption key to use.

In IPv6-mapped CIDR notation (which the daemon uses internally), the IPv4 CIDR range

192.168.1.15/32

equals

0000:0000:0000:0000:0000:FFFF:C0A8:010F/128

The daemon will search for a key in the host definition for 192.168.1.15 and the (defined) supernets:

0000:0000:0000:0000:0000:FFFF:C0A8:010F/128
0000:0000:0000:0000:0000:FFFF:C0A8:010F/127
0000:0000:0000:0000:0000:FFFF:C0A8:010E/126
0000:0000:0000:0000:0000:FFFF:C0A8:010C/125
...
0000:0000:0000:0000:0000:FFFF:C000:0000/98
0000:0000:0000:0000:0000:FFFF:8000:0000/97
0000:0000:0000:0000:0000:FFFF:0000:0000/96
0000:0000:0000:0000:0000:FFFE:0000:0000/95
0000:0000:0000:0000:0000:FFFC:0000:0000/94
...
0000:0000:0000:0000:0000:0000:0000:0000/3
0000:0000:0000:0000:0000:0000:0000:0000/2
0000:0000:0000:0000:0000:0000:0000:0000/1
0000:0000:0000:0000:0000:0000:0000:0000/0

The first key found will be used, as it is the most specific one.

By default, prompt, key, enable, anonymous-enable and content specifications are inherited. Inheritance may be switched off for a host object:

    inherit = no

4.2.3. Example

host = 10.0.0.0/8 {
    name = customer1
    key = "your key here"
    prompt = "\nHitherto shalt thou come, but no further. (Job 38.11)\n\n"
    enable 15 = clear whatever
}

host = test123 {
    address = 10.1.2.0/28
    address = 10.12.1.30/28
    address = 10.1.1.2
    # key/prompt/enable will be inherited from 10.0.0.0/8 by default,
    # unless you specify "inherit = no"
    address file = /some/path/test123.cidr
    prompt = "\nGo away.\n\n"
}

4.3. Configuring Time Ranges

timespec objects may be used for time based profile assignments. Both cron and Taylor-UUCP syntax are supported; see you local crontab(5) and/or UUCP man pages for details. Syntax:

timespec = timespec_name { "entry" [ ... ] }

Example:

# Working hours are from Mo-Fr from 9 to 16:59, and
# on Saturdays from 9 to 12:59:
timespec = workinghours {
    "* 9-16 * * 1-5"   # or: "* 9-16 * * Mon-Fri"
    "* 9-12 * * 6"     # or: "* 9-12 * * Sat"
}

timespec = sunday { "* * * * 0" }

timespec = example {
    Wk2305-0855,Sa,Su2305-1655
    Wk0905-2255,Su1705-2255
    Any
}

4.4. Configuring Access Control Lists

As you'll see below, ACLs can become pretty handy to restrict or dynamically assign group memberships. Standard ACL syntax is:

acl = name { ( (nac ( = [ not ] (HostName|cidr) ) | ( [ dns ] regex = [ not ] NacRegex )) | (nas ( = [ not ] (HostName|cidr) ) | (regex = [ not ] NasRegex )) | (port regex = [ not ] PortRegex ) | (acl = [ not ] ACLName )* } (time = [ not ] TimeSpecName )* }

Alternatively, scripting can be used:

acl script = name { ... }

This is detailled in the next chapter.

For stock ACL syntax, have a look at the Railroad Diagrams below, and things will hopefully become much clearer.

An ACL matches if at least one of each defined subtype expression type matches. ACLs can be defined multiple times and will then be evaluated in order. E.g., this:

acl = myacl {
    nac = 10.0.0.0/8
    nac = 11.0.0.0/8
    nas = somehostobjectname
}

acl = myacl {
    time = workinghours
}

matches

  • for clients in 10.0.0.0/8 or in 11.0.0.0/8, and servers part of somehostobjectname

  • or simply during workinghours, no matter what clients or servers (or, for that matter, ports) are involved.

When using the dns keyword, NAC regex matching is done against the NACs DNS reverse mapping. This will only work if a) the software was compiled with lwres support and b) lwresd is actually running. However, keep in mind that DNS isn't necessarily trustworthy and lookups might plain fail. Keep in mind that you're best off enabling single-connection on your NAS. This allows the daemon to take advantage of caching the reverse-mapping results.


4.5. Scripts

Scripts may currently be used for SHELL services and ACLs. Trivial examples:

    acl script = myacl123 {
        if (nas == 1.2.3.4 || nac = SomeHostName || nac-dns =~ /\\.example\\.com$/) deny
    }
    user = joe {
        service = shell {
            script = myacl123 { if (cmd =~ /^(no\s)?shutdown\s/) permit }
        }
    }

4.5.1. Syntax

A script consists of a series of actions:

The actions return, permit and deny are final. At the end of a script, return is implied, at which the daemon continues processing the configured cmd statements in SHELL context) or standard ACLs (in ACL context). The assignment operations (context =, message =) do make sense in SHELL context only.

Setting the context makes sense the Shell service context only. See the example in the corresponding section.

Condition syntax is:

cmd and context may be used in SHELL context only.


4.6. Configuring Users and Groups

A user may be member of a group (also known as role or profile). Actual group membership may depend on various factors, e.g. the NAS the user is on, the NAC or time ranges. Each group may in turn be member of another group and so on ad infinitum.

User and group declarations are pretty similar. The major difference is, that groups are static, while user declarations may be added at run-time via the MAVIS back-end.

The basic form of a user and group declarations is:

user = string { ...  }

or, respectively for groups:

group = string {  ...  }

The curly brackets may contain key-value pairs and service declarations.

The following declarations are valid in user context only:

  • login = ( ( clear | crypt ) password | mavis )

    The login password authenticates SHELL log-ins to the server.

    login = crypt aFtFBT4e5muQE
    login = clear Ci5c0
    

    For crypt, DES- or MD5-hashed passwords may be used.

    If the mavis keyword is used instead, the password will be looked up via the MAVIS backend. It will not be cached. This functionality may be useful if you want to authenticate at external systems, despite static user declarations in the configuration file.

  • pap = ( ( clear | crypt ) password | mavis )

    The pap authenticates PAP log-ins to the server. Just like with login, the password doesn't need to be in clear text, but may be DES (or MD5) hashed, or may be looked up via the MAVIS backend.

  • arap = clear password

    For ARAP authentication, a cleartext password is required.

  • chap = clear password

    For CHAP authentication, a cleartext password is required.

  • ms-chap = clear password

    For MS-CHAP authentication, a cleartext password is required.

  • opap = clear password

    For outgoing PAP authentication, a cleartext password is required.

  • password = clear password

    This directive sets all previously undefined passwords (with the exception of OPAP) to the given cleartext password. This directive is retained for backwards compatibility only, and usage is deprecated.

The following key-value pairs are valid in both user and group context:

  • acl = ( [ permit ] | deny ) [ not ] acl

    Validity of of a user or group profile may be restricted by ACLs. Multiple ACLs may be specified and are evaluated in order.

  • valid from = ( YYYY-MM-DD | s )

    The profile will be valid starting at the given ISO8601 date, which can be specified either in ISO8601 date format or as in seconds since January 1, 1970, UTC.

  • valid until = ( YYYY-MM-DD | s )

    The profile will be invalid after the given date.

  • message = string

    A message displayed to the user upon log-in.

  • member [ acl [ not ] acl ] = string

    This directive defines group membership, optionally depending on the NAS server's address or on some access list. For example, you could configure:

    host = campus { ... }
    host = remote { ... }
    host = router { ... }
    timespec = workinghours { ... }
    group = admins { ... }
    group = staff { ... }
    group = guest { ... }
    

    plus a couple of ACLs:

    acl oncampus = { nac = campus }
    acl viavpn = { nac = remote }
    acl atwork = { nac = campus time = workinghours }
    

    and then base group membership on the latter:

    user = adminuser { member = admins }
    user = employee {
        ...
        member acl atwork = staff@router
        member acl viavpn = staff
        member acl remote = guest
        ...
    }
    user = guest {
        ...
        member acl atwork = guest
        ...
    }
    user = myself {
        ...
        member = admins@router
        member = staff
        ...
    }
    

    member directives are to be ordered by ACL name, with definitions without ACL coming last. This is enforced at parsing time.

    Multiple groups may be specified, with group names separated by /:

    member = dialin/callback@10.11.12.13
    

    Here, group membership will default to the dialin group. However, appending the separation character * (changeable using the separation tag = character directive), followed by callback to the username at login time will choose the corresponding callback group profile instead.

    To iterate this again: Any user can be a member of exactly one primary group. The dialin/callback syntay in this example actually means: The user is free to choose at login time whether he wants to be a member of dialin XOR callback. User fred may authenticate as fred (or as fred*dialin) to gain dialin membership, and fred*callback will assign him to the callback group.

    The users' choice can be overridden using the tag directive (see below).

    Group membership may depend on NAS IP, e.g. fred could have something like

    member = test1@nas1
    member = test2@nas2
    

    in his profile.

    Just like users, groups can be member of (other) groups:

    group = test1 { ... }
    group = test2 { ... }
                                                                                           
    group = test2 {
       ...
       member = test1
       member = test2@nas1
       ...
    }
    

    Simultaneous membership in (non-hierarchical) groups isn't supported.

    As group membership is resolved when parsing the configuration file, groups and hosts need to be already defined before being used as argument in a member definition.

  • tag ( acl [ not ] acl ) = string

    As described above, a user may manually select an (allowed) group profile at login time using the user*group syntax. You can override the user's choice using the tag directive in user or group profiles. Plus, you can make acl-based tag selections. E.g.:

    timespec = workinghours { "* 9-16 * * 1-5" "* 9-12 * * 6" }
    timespec = weekend { "* * * * 6-1" }
    timespec = changewindow { "* 22-23 * * Sat" "* 0-3 * * Sun" }
    
    acl helpdesk = {
        time = workinghours
        nac = internal_lan
        nas = somecustomer
    }
    
    acl remoteadmin = {
        time = changewindow
        nac = dialin
    }
    
    user = fred {
        login = clear test
        member = admin/ro/emergency
        tag acl helpdesk = admin
        tag acl remoteadmin = emergency
        tag = ro
    }
    

    fred will be a member of the admin group during work hours, but only if his client IP address is part of the internal LAN and if he's on a certain NAS. He'll be member of the emergency group during change window hours, but needs to come from the dial-in pool. Outside these hours he's a member of the ro hours.

    tag definitions are evaluated in order. If no definition matches, the user's session tag (the group selected at login time using user*group syntax) is used. If no group tag was given, the first group in the member definition is selected.

    In most cases, it might be a better idea to use member acl syntax instead of tag acl.

  • client [ regex ] = ( deny | [ permit ] ) string

    As an alternative (or complement) to ACLs (see above), certain NAC based validity restrictions may be placed in a user (or group) object directly. For example, to limit log-ins to a certain IP range or a host group:

        client = 10.99.0.0/16
        client = deny customer3
    

    If the regex keyword is used, string is expected to be a valid regular expression. Regular expression search is expensive and only used if the NAC address sent by the NAS ist not an IP address. Example for regular expression client matching:

        # if compiled with PCRE:
        client = deny /^async$/
        client regex = /^console$/
    
        # without PCRE:
        client = deny "^async$"
        client regex = "^console$"
    
    Note Evaluation Order
     

    Please keep in mind that ACLs are checked before client statements.

    For client definitions, IP addresses are checked before regular expressions, while the latter are evaluated in the order you've defined them.

  • server = ( deny | [ permit ] ) string

    This limits user account validity to certain NAS addresses or groups, e.g.:

        server = 1.2.3.4/32
        server = nas01
    
  • default service = ( permit | deny )

    This defines whether a service not explicitely defined in the user profile should be permitted or denied.

  • prohibit service = service ...

    Use this to override the default service specification. E.g., to explicitely deny the X.25 service:

        prohibit service = x25
    
  • enable [ level ] = ( permit | deny | login | ( clear | crypt ) password )

    This directive may be used to set user or group specific enable passwords, to use the login or to permit (without password) or refuse any enable attempt. Enable secrets defined at group or user level have precedence over those defined at host level. level defaults to 15.

    The default privilege level for an ordinary user on the NAS is usually 1. When a user enables, she can reset this level to a value between 0 and 15 by using the NAS enable command. If she doesn't specify a level, the default level she enables to is 15.


4.6.2. Service Definitions

Service definitions may appear in user and group sections. Services can easily be made dependent on ACLs:

service ( acl [ not ] ACLName= service { ... }

There are a couple of generic configuration attributes which may appear in arbitrary service definitions. In particular:

  • default attribute = ( permit | deny )

    This directive specifies whether the daemon is to accept or reject unknown attributes sent by the NAS (default: deny).

  • acl = ( [ permit ] | deny ) [ not ] acl

    Just as user and group profiles, services can be restricted by using ACLs.

  • ( set | optional ) attribute = value

    Defines mandatory and optional attribute-value pairs. Example:

    set priv-lvl = 15
    

    For a detailed description on mandatory and optional AV-pairs, see the "The Authorization Algorithm" section somewhere below.

Other configuration attributes are service specific and only valid in certain contexts:

SHELL (EXEC) Service

Shell startup should have an appropriate service

service = shell { }

defined. Valid configuration directive within the curly brackets are:

  • default cmd = ( permit | deny )

    This directive specifies whether the daemon is to accept or reject commands not explicitely permitted (default: deny).

  • message ( permit | deny ) = string

    This specifies a message to be presented to the user on accepting or rejecting a command. String substitutions within string are %c (command name) and %a (command arguments). Example:

    message permit "Permitted '%c %a'"
    message deny "Denied '%c %a'"
    

    This directive may appear in cmd sections, too, where it overrides the service section definitions.

  • cmd = command { ... }

    cmd sections permit or deny commands and command arguments. Example:

    cmd = show {
        deny /^(running|startup)-config/
        deny tech-support
        permit //
        message deny = "Try this again and your account will be revoked."
        message permit = "This data is to be considered confidentional."
    }
    cmd = reload {
        permit //
        message permit = "You hopefully know what you're doing ..."
    }
    

    Regular expression syntax is POSIX or, if enabled at compile time, PCRE.

If you're unsure what commands and arguments the router actually sends for verification, you may simply modify a user (or group) profile to display those within a login session. E.g.,

user = ... {
    ...
    debug = CMD
    ...
    service = shell {
        ...
        message debug  = "author: 'cmd = %c { permit /^%a$/ }"
        ...
    }
}

will display the configuration snippets to permit the command in PCRE syntax:

Router#conf t
author: 'cmd = configure { permit /^terminal <cr>$/ }'

Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#

Non-Shell Services

E.g. for PPP, protocol definitions may be used:

service = ppp {
    protocol = ip { set addr = 1.2.3.4 }
}

Use

    default protocol = permit

or

    default protocol = deny

to specify the default for protocols not explicitly defined within a service declaration. (default: deny).

For a Juniper Networks-specific authorization service, use:

service = junos-exec {
   set local-user-name = NOC
   # see the Junos documentation for more attributes
}

4.6.3. Host-group specific services

Services can be configured NAS specific by appending @host to the service name. Here, host is the name of a host object, not an IP address or CIDR range. For example, a user's PPP address could be static on one particular NAS, but dynamic everywhere else:

host = dialin { address = ... }
user = ... {
    service = ppp { protocol = ip { } }
    service = ppp@dialin { protocol = ip { set addr = 1.2.3.4 } }
}

While the same can be achieved using host specific group membership, this adds some flexibility for dynamic authentication backends.


4.6.4. CLI Contexts

When used with single-connection and being told so, the daemon tries to remember command context. which permits the shutdown family of commands for exactly one interface, but denies it for all the others:


user = john {
    password = clear doe
    service = shell {
        default cmd = permit
        set priv-lvl = 15
        script = {
            if (cmd =~ /^interface FastEthernet 0\/1 /) {
                message = "Context has been set. \"[no] shut\" should work for you."
                context = FE
                permit
            } else if (cmd =~ /^interface/){
                message = "Context has been reset."
                context = ""
                permit
            }
            if (context == FE) {
                if (cmd =~ /^shutdown/) permit
                if (cmd =~ /^no shutdown/) permit
                deny
            }
        }
        cmd = shutdown { deny . }
        cmd = no { deny /^shutdown/ }
    }       
}

4.6.5. Examples

Here we declare two users fred and lily, and two groups, admin and staff.

fred is a member of group admin and group admin is in turn a member of group staff. lily is not a member of any group.

group = admin {
    # group admin is a member of group staff
    member = staff
    service = shell {
        set priv-lvl = 15
    }
}

group = staff {
    # group staff is not a member of any group
}

user = lily {
    # user lily is not a member of any group
    # and has nothing else configured as yet
}

user = fred {
    # fred is a member of group admin on 0.0.0.0/0
    member = admin
    # fred is a member of group staff when logging in on 10.0.0.0/8
    member = staff@10.0.0.0/8
    # fred is a member of group admin when logging in on hosts
    # defined in hostgroup test123
    member = admin@test123
    # fred may only log in from a client in 172.16.0.0/24 ...
    client = 172.16.0.0/24
    # ... or from whatever address is defined in some host object test123
    client = test123
}

4.6.7. Configuring Non-local Users via MAVIS

MAVIS configuration is optional. You don't need it if you're content with user configuration in the main configuration file.

A MAVIS configuration file may be specified via

mavis config = file

The MAVIS backend then dynamically creates user entries, based, e.g., on LDAP information. For PAP and LOGIN,

pap backend = mavis
login backend = mavis

in the global section delegate authentiation to the MAVIS sub-system. Statically defined users are still valid, and have a higher precedence.

Relevant MAVIS attributes are

  • AV_A_TACCLIENT

    A comma separated list of host object names or IP address ranges in CIDR notation for which the account is valid.

  • AV_A_TACMEMBER

    A comma separated list consisting of CIDR-specific group memberships (group@cidr) to set group permissions based on the NAS ip address.

  • AV_A_TACPROFILE

    A single line consisting of tac_plus user section configuration directives, e.g.

    { chap = clear "chapsecret" arap = clear "arapsecret" }
    

By default, MAVIS user data will be cached for 120 seconds. You may change that period using

cache timeout = seconds

in the global configuration section.


4.6.8. Configuring Local Users for MAVIS authentication

Under certain circumstances you may wish to keep the user definitions in the plain text configuration file, but authenticate against some external system nevertheless, e.g. LDAP or RADIUS. To do so, just specify one of

    login = mavis
    pap = mavis
    password = mavis

in the corresponding user definition.


4.6.9. Recursion and Groups

In general, when the daemon looks up values, it will look first to see if the user has her own definition for that value. If not, it looks to see if she belongs to a group and if so, whether the group has a value defined. If not, this process continues through the hierarchy of groups (a group can be a member of another group) until a value is found, or there are no more gmaryroups.

This recursive process occurs for lookups of expiration dates and also for authorization parameters (see later), but not for user passwords.

A typical configuration technique is thus to place users into groups and specify as many groupwide characteristics in the group declaration as possible. Then, individual user declarations can be used to override the group settings for selected users as needed.


4.6.10. Configuring User Authentication

User Authentication can be specified separately for PAP, ARAP, CHAP, and normal logins. ARAP, CHAP, and global user authentication must be given in clear text.

The following assigns the user mary five different passwords for ARAP, inbound and outbound CHAP, inbound PAP, outbound PAP, and normal login respectively:

user = mary {
    arap = clear "arap password"
    chap = clear "chap password"
    pap  = clear "inbound pap password"
    opap = clear "outbound pap password"
    login = crypt XQj4892fjk
}

If

user backend = mavis

is configured in the global section, users not found in the configuration file will be looked up by the MAVIS backend. You should consider using this option in conjuction with the more sophisticated backends (LDAP and ActiveDirectory, in particular), or whenever you're not willing to duplicate your pre-existing database user data to the configuration file. For users looked up by the MAVIS backend,

pap backend = mavis

and/or

login backend = mavis

(again, in the global section of the configuration file) will cause PAP and/or Login authentication to be performed by the MAVIS backend (e.g. by performing an LDAP bind), ignoring any corresponding password definitions in the users' profile.

If you just want the users defined in your configuration file to authenticate using the MAVIS backend, simply set the corresponding PAP or Login password field to mavis (there's no need to add the user backend = mavis directive in this case):

user = mary { login = mavis }

4.6.11. Configuring Expiry Dates

An entry of the form:

user = lol {
    valid until = YYYY-MM-DD
    login = clear "bite me"
}

will cause the profile to become invalid, starting after the valid until date. Valid date formats are both ISO8601 and the absolute number of seconds since 1970-01-01.

A expiry warning message is sent to the user when she logs in, by default starting at 14 days before the expiration date, but configurable via the warning period directive.

Complementary to profile expiry,

    valid from = YYYY-MM-DD

activates a profile at the given date.


4.6.12. Configuring Authentication on the NAS

On the NAS, to configure login authentication, try

aaa new-model
aaa authentication login default group tacacs+ local

(Alternatively, you can try a named authentication list instead of default. Please see the IOS documentation for details.)

Caution Don't lock yourself out.
 

As soon as you issue this command, you will no longer be able to create new logins to your NAS without a functioning TACACS+ daemon appropriately configured with usernames and password, so make sure you have this ready.

As a safety measure while setting up, you should configure an enable secret and make it the last resort authentication method, so if your TACACS+ daemon fails to respond you will be able to use the NAS enable password to login. To do this, configure:

aaa authentication login default group tacacs+ enable

or, to if you have local accounts:

aaa authentication login default group tacacs+ local

If all else fails, and you find yourself locked out of the NAS due to a configuration problem, the section on recovering from lost passwords on Cisco's CCO web page will help you dig your way out.


4.6.13. Configuring Authorization

Authorization must be configured on both the NAS and the daemon to operate correctly. By default, the NAS will allow everything until you configure it to make authorization requests to the daemon.

On the daemon, the opposite is true: The daemon will, by default, deny authorization of anything that isn't explicitly permitted.

Authorization allows the daemon to deny commands and services outright, or to modify commands and services on a per-user basis. Authorization on the daemon is divided into two separate parts: commands and services.


4.6.14. Authorizing Commands

Exec commands are those commands which are typed at a Cisco exec prompt. When authorization is requested by the NAS, the entire command is sent to the tac_plus daemon for authorization.

Command authorization is configured by specifying a list of PCRE (Perl Compatible Regular Expressions) or egrep-style (POSIX 1003.2) case-insensitive regular expressions to match command arguments (see your local pcrematching(3) or regex(7) man page, respectively, for a description of regular expressions), and an action which is deny or permit.

Command authorization is configured by specifying a list of case-insensitive regular expressions to match command arguments, and an action which is deny or permit.

If a POSIX pattern contains spaces or special characters, you'll have to enclose the pattern in double quotes ("). For text inside double quotes, C parsing rules apply. In particular, the backslash \ needs to be escaped as \\. PCRE patterns need to be enclosed in slashes (/pattern/). Both POSIX and PCRE syntax may be used in the same configuration file.

The following configuration example permits user Fred to run the following commands:

telnet 131.108.13.any_number
telnet 128.any_number.12.3
show running-config interface anything 

All other commands are denied (by default).

user=fred {
    # default service = deny
    service = shell { 
        # default cmd = deny
        cmd = telnet {
            # permit specified telnets
            # POSIX:
            permit ^131\.108\.13\.[0-9]+$
            # PCRE:
            permit /^128\.\d+\.12\.3$/
        }
        cmd = show {
            # permit show commands
            # PCRE:
            permit /^running-config interface/
        }
    }
}
Tip Whitespace
 

If any non-PCRE argument list you specify contains spaces or tabs, you must enclose it in double quotes. PCRE expressions are to be enclosed in slashes, anyway.

The command and arguments which the user types gets matched to the regular expressions you specify in the configuration file (in order of appearance). The first successful match performs the associated action (permit or deny). If there is no match, the command is denied by default.

Conversely, the following configuration example can be used to deny the command:

telnet 131.108.13.any_number 

and permit all other arguments, since the last line will match any argument list. All other commands and services are permitted due to the "default service = permit" clause.

Note: the default statement must be the first in the user clause

user=fred {
    default service = permit
    service = shell {
        cmd = telnet {
            # allow all telnet commands except to 131.108.13.*
            deny ^131\.108\.13\.[0-9]+
            permit .*
        }
    }
}

Matches are only anchored if you specify so, so deny 131.108.13.[0-9]+ matches anywhere in the command. To anchor the match, use ^ at the beginning of the regular expression.

When a command has multiple arguments, users may enter them in many different permutations. It can be cumbersome to create regular expressions which will reliably authorize commands under these conditions, so administrators may wish to consider other methods of performing authorization e.g. by configuring NAS-local privileged enable levels on the NAS itself.


4.6.14.1. Command Expansion

For command authorization, the Cisco NAS expands all commands to their full names e.g. when you type config t on the NAS, this will be expanded to configuration terminal before being sent to the daemon so that you don't need to list all the possible contractions of a command.

At the user level i.e. inside the braces of a user declaration, the default for a user who doesn't have a service or command explicitly authorized is to deny that service or command. The following directive will permit the service or command by default instead:

user = lol {
    default service = permit
}

Note: This directive must appear first inside the user declaration.

At the service authorization level i.e. inside the braces of a service declaration, arguments in an authorization request are processed according to the algorithm described later. Some actions when authorizing services (e.g. when matching attributes are not found) depend on how the default is configured. The following declaration changes the default from deny to permit for this user and service.

user = lol { service = shell { default attribute = permit } }

Note: This directive must appear before any others inside the service declaration.

Note: for command authorization (as opposed to service authorization being discussed here), you specify deny .* or permit .* as the last line of the regular expression matches to create default behavior.


4.6.15. Authorizing EXEC (SHELL) Startup

If you authorize some exec commands, you implicitly agree to allow that user to start an exec (it doesn't make sense to permit exec commands if an exec can't be started to run those commands)

In addition to agreeing to allow an exec to start, you can supply some parameters whenever an exec starts e.g. an autocommand, a dialback string or a connection access list (acl).

In the example below, when an exec is started on the NAS, an acl of 4 will be returned to the NAS:

user=fred {

    # this following line permits an exec to start and permits
    # all commands and services by default

    default service = permit

    service = shell {
        # When an exec is started, its connection access list will be 4.
        # It also has an autocmd.
        set acl = 4
        set autocmd = "telnet foobar"

        cmd = telnet {
            # allow all fred's telnet commands except telnet to 131.108.13.*
            deny 131\.108\.13\.[0-9]+
            permit .*
        }
    }
}

Note: specifying an autocommand, or any other exec services, is part of EXEC AUTHORIZATION. For it to work, you must also configure exec authorization on your NAS e.g.

aaa authorization exec authorlist group tacacs+ local
aaa authorization commands 15 cmdlist group tacacs+ local

and, eventually, on the lines:

authorization commands 15 cmdlist
authorization exec authorlist

Just as with authentication, you can use a named authorization list, or simply default.


4.6.16. Authorizing EXEC, SLIP, PPP and ARAP services

Authorizing EXEC, SLIP, PPP and ARAP services is done quite differently from command authorization.

When authorizing these services, the NAS sends a request containing a number of attribute-value (AV) pairs, each having the form

attribute=value

(Note: during debugging, you may see AV pairs whose separator character is a * instead of a = sign, meaning that the value in a pair is optional. An = sign indicates a mandatory value. A * denotes an optional value).

E.g., a user starting PPP/IP using an address of 131.108.12.44 would generate a request with the following AV pairs:

service=ppp
protocol=ip
addr*131.108.12.44

You can use the NAS debugging command

debug aaa authorization

to see what authorization AV pairs are being used by the NAS. Note: If you are not on the router console, you will also need to issue a terminal monitor command to see debug output.


4.6.17. The Authorization Process

Authorizing a single session can result in multiple requests being sent to the daemon. For example, in order to authorize a dialin PPP user for IP, the following authorization requests will be made from the NAS:

  1. An initial authorization request to startup PPP from the exec, using the AV pairs service=ppp, protocol=ip, will be made (Note: this initial request will be omitted if you are autoselecting PPP, since you won't know the username yet).

    This request is really done to find the address for dumb PPP (or SLIP) clients who can't do address negotiation. Instead, they expect you to tell them what address to use before PPP starts up, via a text message e.g. "Entering PPP. Your address is 1.2.3.4". They rely on parsing this address from the message to know their address.

  2. Next, an authorization request is made from the PPP subsystem to see if PPP's LCP layer is authorized. LCP parameters can be set at this time (e.g. callback). This request contains the AV pairs service=ppp, protocol=lcp.

  3. Next an authorization request to startup PPP's IPCP layer is made using the AV pairs service=ppp, protocol=ipcp. Any parameters returned by the daemon are cached.

  4. Next, during PPP's address negotiation phase, each time the remote peer requests a specific address, if that address isn't in the cache obtained in step 3, a new authorization request is made to see if the peers requested address is allowable. This step can be repeated multiple times until both sides agree on the remote peer's address or until the NAS (or client) decide they're never going to agree and they shut down PPP instead.


4.6.18. Authorization Relies on Authentication

Since we pretty much rely on having a username in authorization requests to decide which addresses etc. to hand out, it is important to know where the username for a PPP user comes from. There are generally 2 possible sources:

  1. You force the user to authenticate by making her login to the exec and you use that login name in authorization requests. This username isn't propagated to PPP by default. To have this happen, you generally need to configure the if-needed method, e.g.

    aaa authentication login default tacacs+
    aaa authentication ppp default if-needed
    
  2. Alternatively, you can run an authentication protocol, PAP or CHAP (CHAP is much preferred), to identify the user. You don't need an explicit login step if you do this (so it's the only possibility if you are using autoselect). This authentication gets done before you see the first LCP authorization request of course. Typically you configure this by doing:

    aaa authentication ppp default tacacs+ 
    int async 1
      ppp authentication chap
    

If you omit either of these authentication schemes, you will start to see authorization requests in which the username is missing.


4.6.19. Configuring Service Authorization

A list of AV pairs is placed in the daemon's configuration file in order to authorize services. The daemon compares each NAS AV pair to its configured AV pairs and either allows or denies the service. If the service is allowed, the daemon may add, change or delete AV pairs before returning them to the NAS, thereby restricting what the user is permitted to do.


4.6.19.1. The Authorization Algorithm

The complete algorithm by which the daemon processes its configured AV pairs against the list the NAS sends, is given below.

Find the user (or group) entry for this service (and protocol), then for each AV pair sent from the NAS:

  1. If the AV pair from the NAS is mandatory:

    1. look for an exact attribute,value match in the user's mandatory list. If found, add the AV pair to the output.

    2. If an exact match doesn't exist, look in the user's optional list for the first attribute match. If found, add the NAS AV pair to the output.

    3. If no attribute match exists, deny the command if the default is to deny, or,

    4. If the default is permit, add the NAS AV pair to the output.

  2. If the AV pair from the NAS is optional:

    1. look for an exact attribute,value match in the user's mandatory list. If found, add DAEMON's AV pair to output.

    2. If not found, look for the first attribute match in the user's mandatory list. If found, add DAEMON's AV pair to output.

    3. If no mandatory match exists, look for an exact attribute,value pair match among the daemon's optional AV pairs. If found add the DAEMON's matching AV pair to the output.

    4. 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.

    5. If no match is found, delete the AV pair if the default is deny, or

    6. If the default is permit add the NAS AV pair to the output.

  3. After all AV pairs have been processed, for each mandatory DAEMON AV pair, if there is no attribute match already in the output list, add the AV pair (but add only ONE AV pair for each mandatory attribute).


4.6.19.2. Recursive Authorization

Remember that authorization is also recursive over groups. Thus, if you place a user in a group, the daemon will look in the group for authorization parameters if it cannot find them in the user declaration.


4.6.20. Examples

host = 0.0.0.0/0 {
    key = "your key here"
}

group = admin {
    # group members who have no expiry date set will use this one
    valid until = 1997-01-01
    service = shell {
        default cmd = permit
    }
}

user=fred {
    login = crypt mEX027bHtzTlQ
    member = admin
    valid until = 2005-05-23

    service = shell {
        # When Fred starts an exec, his connection access list is 5
        set acl = 5

        # We require this autocmd to be done at startup
        set autocmd = "telnet foo"

        # All commands except show system are denied for Fred
        cmd = show {
            # Fred can run the following show command
            permit system
            deny .
        }
    }

    service = ppp {
        protocol = lcp
        protocol = ip {
            # Fred can run IP over PPP only if he uses one
            # of the following mandatory addresses. If he
            # supplies no address, the first one here will
            # be mandated
            set addr=131.108.12.11
            set addr=131.108.12.12
            set addr=131.108.12.13
            set addr=131.108.12.14

            # Fred's mandatory input access list number is 101
            set inacl=101

            # We will suggest an output access list of 102,
            # but the NAS may choose to ignore or override it
            optional outacl=102
        }
    }

    service = slip {
        default protocol = permit
        # Fred can run SLIP. When he does, he will have to use
        # these mandatory access lists
        set inacl=101
        set outacl=102
    }
}

user = wilma {
    login = crypt mEX027bHtzTlQ
    member = admin
}

4.6.21. Configuring Authorization on the NAS

If authorization is not explicitly configured on the NAS, no authorization takes place, i.e. effectively, everything is permitted. Note that this is the converse of what happens on the daemon, where anything not explicitly permitted is denied by default.

To configure command authorization on the NAS, issue the following NAS configuration commands:

aaa authorization commands 15 cmdlist group tacacs+ local

and, on the lines:

aaa authorization commands 1 cmdlist
aaa authorization commands 15 cmdlist

This will make the NAS send TACACS+ requests for all level 1 (ordinary user) and level 15 (privileged level) commands.

Note: As soon as you configure the above on your NAS, you will only be permitted to execute NAS commands which are permitted by your TACACS+ daemon. So make sure you have configured, on the daemon, an authenticated user who is authorized to run commands, or you will be unable to do much on the NAS after turning on authorization.

Alternatively, or in addition, you may also want to configure the following:

aaa authorization commands 1 group tacacs+ if-authenticated

This will use TACACS+ authorization for level 1 (user-level commands) but if problems arise, you can just switch off the TACACS+ server and authorization will then be granted to anyone who is authenticated.

The following daemon configuration should be sufficient to ensure that you can always login as username admin (with a suitable password) and run any command as that user:

user = admin {
    default service = permit
    service = shell { default cmd = permit }
    login = crypt kppPfHq/j6gXs
}

4.7. Accounting

All accounting records are written, as text, to the file (or command) specified with the accounting log directive. For logging to plain disk files, fcntl(2) file locking is used, so it is recommended that the accounting file resides on a local filesystem. Although fcntl locking over NFS is supported on some Unix implementations, it is notoriously unreliable. Even if your implementation is reliable, locking is likely to be extremely inefficient over NFS.


4.7.1. Daemon Configuration

The accounting log directive allows for writing writing to plain files or piping to programs. strftime(3) format strings are recognized. Examples are

accounting log = /var/log/tac_plus/%Y/%m/%d.access

or

accounting log = "|exec /usr/bin/logger"

4.7.1.1. Accounting Records

Accounting records are text lines containing tab-separated fields. The first 6 fields are always the same. These are:

timestamp, NAS name, username, port, address, record type.

Following these, a variable number of fields are written, depending on the accounting record type. All are of the form attribute=value. There will always be a task_id field.

Current attributes are:

unknown service start_time port elapsed_time status priv_level cmd protocol cmd-arg bytes_in bytes_out paks_in paks_out address task_id callback-dialstring nocallback-verify callback-line callback-rotary

More may be added over time.

Example records (lines wrapped for legibility) are thus:

1995-07-13 13:35:28 -0500  172.16.1.4  chein  tty5   171.69.1.141
        stop   task_id=12028  service=exec  port=5   elapsed_time=875
1995-07-13 13:37:04 -0500  172.16.1.4  lol    tty18  171.69.1.129
        stop   task_id=11613  service=exec  port=18  elapsed_time=909
1995-07-13 14:09:02 -0500  172.16.1.4  billw  tty18  171.69.1.152
        start  task_id=17150  service=exec  port=18
1995-07-13 14:09:02 -0500  172.16.1.4  billw  tty18  171.69.1.152
        start  task_id=17150  service=exec  port=18

Elapsed time is in seconds, and is the field most people are usually interested in.


4.7.2. NAS Configuration

To get accounting records equivalent to previous versions of tacacs, the following is sufficient. "Stop" records contain elapsed time for connections and exec sessions.

aaa accounting system default start-stop group tacacs+
aaa accounting exec default start-stop group tacacs+
aaa accounting exec acctlist stop-only group tacacs+
aaa accounting commands 15 acctlist start-stop group tacacs+
aaa accounting network acctlist stop-only group tacacs+

line XX
  accounting commands 15 acctlist

Again, feel free to use the default named accounting list.


5. MAVIS Configuration

The distribution comes with various MAVIS modules, of which the external module is probably the most interesting, as it interacts with simple Perl scripts to authenticate and authorize requests. You'll find sample scripts in the mavis/perl directory. Have a close look at them, as you may (or will) need to perform some trivial customizations to make them match your local environment.

You should really have a look at the MAVIS documentation. It gives examples for RADIUS and PAM authentication, too.


5.1. LDAP Backend

mavis_tacplus_ldap.pl is an authentication/authorization backend for the external module. It interfaces to various kinds of LDAP servers, e.g. OpenLDAP, Fedora DS and Active Directory. Its behaviour is controlled by a list of environmental variables:

Table 1. LDAP Backend Environment Variables

Variable Description
LDAP_SERVER_TYPE

One of: generic, tacacs_schema, microsoft.

Default: tacacs_schema

LDAP_HOST

Space-separated list of LDAP URLs or IP addresses or hostnames

Examples: "ldap01 ldap02", "ldaps://ads01:636 ldaps://ads02:636"

LDAP_SCOPE

LDAP search scope (base, one, sub)

Default: sub

LDAP_BASE

Base DN of your LDAP server

Example: dc=example,dc=com

LDAP_FILTER

LDAP search filter. Defaults depend on LDAP_SERVER_TYPE:

generic: "(uid=%s)"

tacacs_schema: "(&(uid=%s)(objectClass=tacacsAccount))"

microsoft: "(&(objectclass=user)(sAMAccountName=%s))"

LDAP_FILTER_CHPW

LDAP search filter for password changes. Defaults depend on LDAP_SERVER_TYPE:

generic: "(uid=%s)"

tacacs_schema: "(&(uid=%s)(objectClass=tacacsAccount)(!(tacacsFlag=staticpasswd)))"

microsoft: "(&(objectclass=user)(sAMAccountName=%s))"

LDAP_USER

User to use for LDAP bind if server doesn't permit anonymous searches.

Default: unset

LDAP_PASSWD

Password for LDAP_USER

Default: unset

TACACS_GROUP_PREFIX

An AD group starting with this prefix will be used for tacacs group membership.

Default: tacacs

REQUIRE_TACACS_GROUP_PREFIX

If set, user needs to be in one of the TACACS_GROUP_PREFIX groups.

Default: unset

USE_TLS

If set, the server is required to support start_tls.

Default: unset

FLAG_CHPW

Permit password changes via this backend.

Default: unset

FLAG_PWPOLICY

Try to enforce a simplicistic password policy.

Default: unset

FLAG_CACHE_CONNECTION

Keep connection to LDAP server open.

Default: unset


5.1.1. LDAP Custom Schema Backend

For LDAP_SERVER_TYPE set to tacacs_schema, the program expects the LDAP server to support the experimental ldap.schema, included for OpenLDAP and Fedora-DS. The schema files are located in the mavis/perl directory.

The new schema allows for a auxiliary object class

objectClass: tacacsAccount

which introduces a couple of new attributes. A sample user entry could then look similar to the following LDIF snippet:

dn: uid=marc,ou=people,dc=example,dc=com
uid: marc
cn: Marc Huber
objectClass: posixAccount
objectClass: inetOrgPerson
objectClass: shadowAccount
objectClass: tacacsAccount
shadowMax: 10000
uidNumber: 1000
gecos: Marc Huber
givenName: Marc
sn: Huber
gidNumber: 500
shadowLastChange: 14012
loginShell: /bin/bash
homeDirectory: /Users/marc
mail: marc@example.com
userPassword:: abcdefghijklmnopqrstuvwxyz=
tacacsClient: 192.168.0.0/24
tacacsClient: management
tacacsMember: readonly@172.16.5.0/24
tacacsMember: readwrite@nasgroup
tacacsProfile: { valid until = 2010-01-30 chap = clear ahzoi5Ue }

As tacacsProfile may (and most probably will) contain sensitive data, you should consider setting up LDAP ACLs to restrict access.

You should be pretty familiar with OpenLDAP (or, for that matter, Fedora-DS) if you're willing to go this route. Hint for OpenLDAP: Add tacacs.schema to the list of included schema and objectClass definitions in slapd.conf.


5.1.2. Active Directory Backend

If LDAP_SERVER_TYPE is set to microsoft, the script backends to AD servers. Sample configuration:

id = spawnd {
    listen = {
        port = 49
    }
    spawn = {
        instances min = 1
        instances max = 10
    }
    background = yes
}

id = tac_plus {
    access log = /var/log/tacacs/%Y/%m/%d/access.log
    accounting log = /var/log/tacacs/%Y/%m/%d/acct.log

    mavis module = external {
        # Optionally:
        # script out = {
        #     # Require group membership:
        #     if (undef($TACMEMBER) && $RESULT == ACK) set $RESULT = NAK
        #
        #     # Don't cache passwords:
        #     if ($RESULT == ACK) set $PASSWORD_ONESHOT = 1
        # }

        setenv LDAP_SERVER_TYPE = "microsoft"
        # setenv LDAP_HOSTS = "ldaps://ads01:636 ldaps://ads02:636"
        setenv LDAP_HOSTS = "ads01:3268 ads02:3268"
        setenv LDAP_SCOPE = sub
        setenv LDAP_BASE = "dc=example,dc=com"
        setenv LDAP_FILTER = "(&(objectclass=user)(sAMAccountName=%s))";
        setenv LDAP_USER = tacacs@example.com
        setenv LDAP_PASSWD = Secret123
        setenv TACACS_GROUP_PREFIX = tacacs
        # setenv REQUIRE_TACACS_GROUP_PREFIX = 1
        setenv USE_TLS = 0
        exec = /usr/local/lib/mavis/mavis_tacplus_ldap.pl
    }

    login backend = mavis
    pap backend = mavis

    host = world {
        address = ::/0
        prompt = "Welcome\n"
        key = cisco
    }

    host = helpdesklab {
        address = 192.168.34.16/28
    }

    # A user will be in the "admin" group if he's member of the
    # corresponding "tacacsadmin" ADS group.

    group = admin {
        default service = permit
        service = shell {
            default command = permit
            default attribute = permit
            set priv-lvl = 15
        }
    }

    # A user will be in the "helpdesk" group if he's member of the
    # corresponding "tacacshelpdesk" ADS group:

    group = helpdesk {
        default service = permit
        service = shell {
            default command = permit
            default attribute = permit
            set priv-lvl = 1
        }
        enable = deny
        member = admin@helpdesklab
    }
}

5.1.3. Generic LDAP Backend

If LDAP_SERVER_TYPE is set to generic, the script won't require any modification to your LDAP server, but only authenticates users (with login = mavis, pap = mavis or password = mavis declaration) defined in the configuration file. No authorization is done by this backend.


5.2. System Password Backends

mavis_tacplus_passwd.pl authenticates against your local password database. Alas, to use this functionality, the script may have to run as root, as it needs access to the encrypted passwords. Primary and auxiliary UNIX group memberships will be mapped to TACACS+ groups.

mavis_tacplus_opie.pl is based on mavis_tacplus_passwd.pl, but uses OPIE one-time passwords for authentication.


5.3. RADIUS Backend

mavis_tacplus_radius.pl authenticates against a RADIUS server. No authorization is done, unless the RADIUS_GROUP_ATTR environment variable is set (see below). This may, for example, be useful if you have static user account definitions in the configuration file, but authentication passwords should be verified by RADIUS. Use the login = mavis or password = mavis statement in the user profile for this to work.


5.3.1. Sample Configuration

mavis module = external {
        exec = /usr/local/lib/mavis_tacplus_radius.pl
        setenv RADIUS_HOST = 1.2.3.4:1812
        setenv RADIUS_SECRET = "mysecret"
        setenv RADIUS_GROUP_ATTR = Some-Radius-Attribute
    }

If the Authen::Radius Perl module is installed, the value of the RADIUS attribute specified by RADIUS_GROUP_ATTR will be used to create a TAC_PROFILE definition which uses the attribute value as group membership. E.g., if an attribute value of Administrator would result in a

  { member = Administrator }

profile for the authenticated user, enabling authorization and omitting the need for static users in the configuration file.

Keep in mind that this will only work if

  • single-connection is used and

  • mavis cache timeout is set to a sufficiently high value that covers the user's (expected) maximum login time.


5.4. Experimental Backends

mavis_tacplus_sms.pl is a sample (skeleton) script to send One-Time Passwords via a SMS backend.


5.5. Error Handling

If a backend script fails due to an external problem (e.g. LDAP server unavailability), your router may or may not fall back to local authentication (if configured). Chances are, that the fallback doesn't work. If you still want to be able to authenticate via TACACS+ in that case, you can do so with a non-MAVIS user which will only be valid in case of a backend error:

    ...
    # set the time interval you want the user to be valid if the backend fails:
    authentication fallback period = 60 # that's actually the default value
    ...
    # add a local user for emergencies:
    user = cisco {
        ...
        fallback-only
        ...
    }

To indicate that fallback mode is actually active, you may a display a different login prompt to your users:

    host = ... {
        ...
        prompt = "Welcome\n"
        prompt fallback = "Welcome\nEmergency accounts are currently enabled.\n"
        ...
    }

Fallback can be enabled/disabled globally an on a per-host basis. Default is enabled.

    authentication fallback = permit
    host = ... {
        ...
        authentication fallback = deny
        ...
    }

6. Debugging Hints


6.1. Debugging Configuration Files

When creating configuration files, it is convenient to check their syntax using the -P flag to tac_plus; e.g:

tac_plus -P config-file 

will syntax check the configuration file and print any error messages on the terminal.

Debugging options available include:


6.2. Debugging Regular Expressions

Getting command authorization to work in a predictable way can be tricky ‐ the exact attributes the NAS sends to the daemon may depend on the IOS version, and may in general not match your expectations. If your regular expressions don't work, add

debug = REGEX

to your configuration file in global, user, group or host context, and the daemon may log some useful information to syslog.


7. Frequently Asked Questions


8. Canned Configurations

Here are some canned configurations for getting demos started:


8.1. Login Authentication

A canned configuration for login authentication only. This allows user fred to login with password abcdef. If the TACACS+ server dies, the enable secret will be accepted as a login password instead.

Daemon:

id = spawnd {
    listen = { port = 49 }
}
id = tac_plus {
    host = any { key = "some key" address = 0.0.0.0/0 }

    # repeat as necessary for each user
    user = fred { login = clear abcdef }
}

NAS:

aaa new-model
enable secret foobar
! use TACACS+. If server dies, use the enable secret password
aaa authentication login default group tacacs+ enable
tacacs-server host ...
tacacs-server key some key

8.2. Command Authorization

This will allow user fred to login with password abcdef and to run the privileged (level 15) commands write terminal and configure. All other privileged commands will be denied.

The "none" keyword in the NAS configuration line means that if the TACACS+ server dies, any command will be allowed.

Daemon:

id = spawnd {
    listen = { port = 49 }
}
id = tac_plus {
    host = any { key = "some key" address = 0.0.0.0/0 }

    # repeat as necessary for each user
    user = fred {
        login = clear abcdef
        service = shell {
            cmd = write  { permit terminal }
            cmd = configure { permit .* }
        }
    }
}

NAS:

aaa new-model
! all level 15 (privileged commands). If server dies, allow everything
aaa authorization commands 15 default group tacacs+ none
tacacs-server host 10.1.1.1
tacacs-server key some key

8.3. Network Access Authorization

This config allows fred to login to line 1 with password abcdef (or to and to run ppp using chap authentication. The chap password is lab.

Daemon:

id = spawnd {
    listen = { port = 49 }
}
id = tac_plus {
    host = any { key = "some key" address = 0.0.0.0/0 }

    # repeat as necessary for each user
    user = fred {
        login = clear abcdef
        chap = clear lab
        service = ppp { protocol = ip { set addr=1.0.0.2 } }
    }
}

NAS:

aaa new-model
! authenticate exec logins (if not autoselecting)
aaa authentication login default group tacacs+
! authorize network services via TACACS+
aaa authorization network default group tacacs+
! use TACACS+ for authenticating ppp users
aaa authentication ppp default group tacacs+ 
tacacs-server host 10.1.1.1
tacacs-server key some key
interface Async1
ip address 1.0.0.1 255.0.0.0
async default ip address 172.21.14.55
encapsulation ppp
async dynamic address
async mode interactive
! use chap to authenticate ppp users
ppp authentication chap
line 1
! need "modem inout" here and flow control if using a modem

8.4. ARAP

Daemon:

id = spawnd {
    listen = { port = 49 }
}
id = tac_plus {
    host = any { key = "some key" address = 0.0.0.0/0 }

    user = lol {
        arap = clear arapSecret
        service = arap
    }
}

NAS:

aaa new-model
aaa authentication arap default group tacacs+
aaa authorization network default group tacacs+
aaa accounting network default start-stop group tacacs+
!
appletalk routing
arap network ...
!
interface Ethernet0
  appletalk cable-range ...
  appletalk zone ...
!
tacacs-server host ...
tacacs-server key ...
!
line 1
  location a modem
  modem answer-timeout 0
  modem InOut
  autoselect arap
  autoselect during-login
  arap enable
  speed ...
  flowcontrol hardware

8.5. Callback

Note Availability of Callback
 

Callback is available only in IOS 11.1 and later, and can only be controlled via TACACS+ for ASYNC lines. ISDN callback can be configured on the NAS but cannot be controlled via AAA.

Here is an example of AAA configuration (with exec and network accounting enabled):

Daemon:

Example of remote TACACS+ server configuration file entry for username foobar:

id = spawnd {
    listen = { port = 49 }
}
id = tac_plus {
    host = any { key = "some key" address = 0.0.0.0/0 }

    user = foobar {
        arap = clear AAAA
        login = clear LLLL
        chap = clear CCCC
        pap = clear PPPP
        opap = clear OOOO
        service = ppp {
            default protocol = permit
            protocol = lcp {
                set callback-dialstring=123456
            }
        }
        service = arap {
            protocol = atalk {
                set callback-dialstring=2345678
            }
        }
        service = shell {
            set callback-dialstring=3456789
            set callback-line=7
            set nocallback-verify=1
        }
    }
}

NAS:

aaa new-model
tacacs-server host XX.XX.XX.XX
tacacs-server key fookey
aaa accounting exec wait-start tacacs+
aaa accounting network wait-start tacacs+

! Example of AAA configuration for Exec:
aaa authentication login execcheck tacacs+
aaa authorization network tacacs+
service exec-callback

line 4
  login authentication execcheck

! Example of AAA configuration for ARAP:
aaa authentication arap arapcheck tacacs+
aaa authorization network tacacs+
arap callback

line 4
  arap authentication arapcheck

! Example of AAA-specific configuration for PPP callback:
aaa new-model
aaa authentication ppp pppcheck tacacs+
aaa authorization network tacacs+

int async 6
  ppp authentication chap pppcheck
  ppp callback accept

9. Authorization AV pairs

The following authorization AV pairs specify which service is being authorized and are typically accompanied by protocol AV pairs and other, additional pairs from the lists below. (For a complete and current list of supported AV pairs and required IOS releases search http://www.cisco.com/ for "TACACS+ Attribute-Value Pairs").


10. Upgrading from Previous Releases

There may be some caveats to consider if you're using a previous version of the software:


11. Bugs


12. References


13. Copyrights and Acknowledgements

Please see the source for copyright and licensing information of individual files.


 Valid CSS 
 Valid HTML 4.0 
 NO ePATENTS 
 Impressum