home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc1492.txt < prev    next >
Text File  |  1996-05-07  |  43KB  |  635 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                         C. Finseth Request for Comments: 1492                       University of Minnesota                                                                July 1993 
  8.  
  9.            An Access Control Protocol, Sometimes Called TACACS 
  10.  
  11.  Status of this Memo 
  12.  
  13.    This memo provides information for the Internet community.  It does    not specify an Internet standard.  Distribution of this memo is    unlimited. 
  14.  
  15. Background 
  16.  
  17.    There used to be a network called ARPANET.  This network consisted of    end nodes (hosts), routing nodes (IMPs) and links.  There were (at    least) two types of IMPs: those that connected dedicated lines only    and those that could accept dial up lines.  The latter were called    "TIPs." 
  18.  
  19.    People being what they were, there was a desire to control who could    use the dial up lines.  Someone invented a protocol, called "TACACS"    (Terminal Access Controller Access Control System?), which allowed a    TIP to accept a username and password and send a query to a TACACS    authentication server, sometimes called a TACACS daemon or simply    TACACSD.  This server was normally a program running on a host. The    host would determine whether to accept or deny the request and sent a    response back.  The TIP would then allow access or not, based upon    the response. 
  20.  
  21.    While TIPs are -- shall we say? -- no longer a major presence on the    Internet, terminal servers are.  Cisco Systems terminal servers    implement an extended version of this TACACS protocol.  Thus, the    access control decision is delegated to a host.  In this way, the    process of making the decision is "opened up" and the algorithms and    data used to make the decision are under the complete control of    whoever is running the TACACS daemon.  For example, "anyone with a    first name of Joe can only login after 10:00 PM Mon-Fri, unless his    last name is Smith or there is a Susan already logged in." 
  22.  
  23.    The extensions to the protocol provide for more types of    authentication requests and more types of response codes than were in    the original specification. 
  24.  
  25.    The original TACACS protocol specification does exist.  However, due    to copyright issues, I was not able to obtain a copy of this document 
  26.  
  27.  
  28.  
  29. Finseth                                                         [Page 1] 
  30.  RFC 1492                         TACACS                        July 1993 
  31.  
  32.     and this lack of access is the main reason for the writing of this    document.  This version of the specification was developed with the    assistance of Cisco Systems, who has an implementation of the TACACS    protocol that is believed to be compatible with the original    specification.  To be precise, the Cisco Systems implementation    supports both the simple (non-extended) and extended versions.  It is    the simple version that would be compatible with the original. 
  33.  
  34.    Please keep in mind that this is an informational RFC and does not    specify a standard, and that more information may be uncovered in the    future (i.e., the original specification may become available) that    could cause parts of this document to be known to be incorrect. 
  35.  
  36.    This RFC documents the extended TACACS protocol use by the Cisco    Systems terminal servers.  This same protocol is used by the    University of Minnesota's distributed authentication system. 
  37.  
  38. 1. Protocol Semantics 
  39.  
  40.    This section will describe the requests and responses.  The following    two sections will describe two different ways of encoding the    protocol. 
  41.  
  42.    A request/response pair is the basic unit of interaction.  In this    pair, the client sends a request and the server replies with a    response.  All requests must be acknowledged with a response.  This    requirement implies that all requests can be denied, although it is    probably futile to attempt to deny a "logout" request. 
  43.  
  44. 1.1 Connections 
  45.  
  46.    In some cases, a string of request/response pairs forms a larger    unit, called a "connection." 
  47.  
  48.    There are three types of connections: 
  49.  
  50.    1) Authenticate only, no connection: 
  51.  
  52.            client:  sends an AUTH packet            server:  responds with a REPLY 
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64. Finseth                                                         [Page 2] 
  65.  RFC 1492                         TACACS                        July 1993 
  66.  
  67.     2) Login connection: 
  68.  
  69.            client:  sends a LOGIN packet            server:  responds with a REPLY 
  70.  
  71.            repeat zero or more times:                    client:  sends a CONNECT packet                    server:  responds with a REPLY 
  72.  
  73.            client:  sends a LOGOUT packet            server:  responds with a REPLY 
  74.  
  75.    3) SLIP connection: 
  76.  
  77.            client:  sends a LOGIN packet            server:  responds with a REPLY 
  78.  
  79.            repeat zero or more times:                    client:  sends a CONNECT packet                    server:  responds with a REPLY 
  80.  
  81.            client:  sends a SLIPADDR packet            server:  responds with a REPLY 
  82.  
  83.            repeat zero or more times:                    client:  sends a CONNECT packet                    server:  responds with a REPLY 
  84.  
  85.            client:  sends a SLIPON packet            server:  responds with a REPLY            client:  sends a LOGOUT packet (immediate)            server:  responds with a REPLY 
  86.  
  87.            client:  sends a SLIPOFF packet            server:  responds with a REPLY 
  88.  
  89. 1.2 Requests 
  90.  
  91.    This section lists the requests supported by the protocol.  The    responses are described in the later encodings sections. 
  92.  
  93.    AUTH(username, password, line, style) 
  94.  
  95.       This request asks for an authentication.  The parameters are: 
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103. Finseth                                                         [Page 3] 
  104.  RFC 1492                         TACACS                        July 1993 
  105.  
  106.                - the username               - the password               - an indication of which line the request is for, and               - a style of authentication 
  107.  
  108.       The username is a string that identifies the user.  In principle,       it can be of any length and contain any characters.  In practice,       it should be no longer than 128 characters and should contain only       the ASCII characters "!" (33 decimal) through "~" (126 decimal),       inclusive. 
  109.  
  110.       The password is a string that is used to authenticate the user       identified by the username.  In principle, it can be of any length       and contain any characters.  In practice, it should be no longer       than 128 characters and should contain only the ASCII characters       "!" (33 decimal) through "~" (126 decimal), inclusive. 
  111.  
  112.       The line is a non-negative decimal integer.  If the client       supports multiple physical access channels, this value identifies       the particular channel.  By convention, lines are numbered       starting from one, although this should be taken with a grain of       salt.  For example, Cisco Systems' implementation uses zero to       designate the console port, then continues with one for the "main"       serial lines. Clients that support only one channel should use       line zero. 
  113.  
  114.       The authentication style is a possibly empty string.  It       identifies the particular style of authentication to be performed.       Its syntax and semantics are local. 
  115.  
  116.       Example: 
  117.  
  118.               AUTH("fin@unet.umn.edu", "fake-password", 0, "staff") 
  119.  
  120.       This specifies a username of "fin@unet.umn.edu" (which happens to       be my e-mail address), a password, an indication that no line is       associated with this request, and a style of "staff".  The       semantics for this style might be that I am required to be a staff       member (in addition, of course, to supplying a valid username and       password).  The server would presumably consult an external       database to verify the staff status. 
  121.  
  122.       As a local option, the implementation may choose to encode the       style information by using alternate port numbers.  E.g. port 4001       would mean style 1, 4002 would be style 2, etc. 
  123.  
  124.       Note that the AUTH request type cannot be sent using the UDP       encoding. 
  125.  
  126.  
  127.  
  128. Finseth                                                         [Page 4] 
  129.  RFC 1492                         TACACS                        July 1993 
  130.  
  131.     LOGIN(username, password, line) returns (result1, result2, result3) 
  132.  
  133.       This request asks for an authentication and signals that -- if the       authentication succeeds -- a login connection is starting.  The       parameters are: 
  134.  
  135.       - the username       - the password       - an indication of which line the request is for 
  136.  
  137.       The meanings of the input fields are the same as the AUTH request.       If the request is successful, this request returns three result       values in addition to the success status.  The result values are       non-negative integers.  Their interpretation is local.  For       example, Cisco Systems terminal servers interpret result3 to be       the identifier of a local access list to use for additional       validation. 
  138.  
  139.    CONNECT(username, password, line, destinationIP, destinationPort)    returns (result1, result2, result3) 
  140.  
  141.       This request can only be issued when the username and line specify       an already-existing connection.  As such, no authentication is       required and the password will in general be the empty string. It       asks, in the context of that connection, whether a TCP connection       can be opened to the specified destination IP address and port. 
  142.  
  143.       The return values are as for LOGIN. 
  144.  
  145.    SUPERUSER(username, password, line) 
  146.  
  147.       This request can only be issued when the username and line specify       an already-existing connection.  As such, no authentication is       required and the password will in general be the empty string.  It       asks, in the context of that connection, whether the user can go       into "super-user" or "enable" mode on the terminal server. 
  148.  
  149.       As an example of the flexibility inherint in this whole scheme,       the TACACSD supplied by Cisco Systems ignores the username part       and instead checks wether the password matches that of the special       user "$enable$". 
  150.  
  151.    LOGOUT(username, password, line, reason) 
  152.  
  153.       This request can only be issued when the username and line specify       an already-existing connection.  As such, no authentication is       required and the password will in general be the empty string.  It       indicates that the connection should be terminated (but see 
  154.  
  155.  
  156.  
  157. Finseth                                                         [Page 5] 
  158.  RFC 1492                         TACACS                        July 1993 
  159.  
  160.        SLIPON).  It must be acknowledged, but the success/fail status of       the acknowledgment is irrelevant.  The reason value indicates why       the connection is terminating.  A null reason value is supplied       when the connection is going into SLIP mode. 
  161.  
  162.    SLIPON(username, password, line, SLIPaddress) returns (result1,    result2, result3) 
  163.  
  164.       This request can only be issued when the username and line specify       an already-existing connection.  As such, no authentication is       required and the password will in general be the empty string.  It       asks, in the context of that connection, whether the specified       SLIPaddress can be used for the remote end of the connection. 
  165.  
  166.       If the server replies with a success, the client can proceed to a       SLIPON request.  (It need not do so right away, however.) 
  167.  
  168.       Note that semantics of "username" can get hairy.  For example, the       Cisco Systems implementation encodes information in this way: 
  169.  
  170.       - If the user just requested the default address be assigned, this       field holds the username in lower case. 
  171.  
  172.       - If the user requested a specific IP address or host name for the       SLIP connection, this field contains the requested host name in       UPPER case. 
  173.  
  174.       If the server replies with a success, the client will immediately       send a LOGOUT request.  However, the connection will remain       established until a SLIPOFF request is sent.  No other       authentication requests will be sent for that connection. 
  175.  
  176.       SLIPaddress specifies the IP address used by the remote host.  If       a SLIPADDR request has been made, it will be that address.       Otherwise, it will be the default address assigned by the client       (e.g., Cisco terminal server). 
  177.  
  178.       The return values are as for LOGIN. 
  179.  
  180.    SLIPOFF(username, password, line, reason) 
  181.  
  182.       This request can only be issued when the username and line specify       an already-existing connection that is in "SLIP" mode.  As such,       no authentication is required and the password will in general be       the empty string.  It indicates that the connection should be       terminated.  It must be acknowledged, but the success/fail status       of the acknowledgment is irrelevant.  The reason value indicates       why the connection is terminating. 
  183.  
  184.  
  185.  
  186. Finseth                                                         [Page 6] 
  187.  RFC 1492                         TACACS                        July 1993 
  188.  
  189.  2.0 UDP Encoding: TACACS 
  190.  
  191.    This section describes the UDP encoding of the requests that have    just been described.  It also describes the responses.  This UDP    encoding forms the basis of the historical TACACS protocol. 
  192.  
  193.    This protocol uses port 49.  This assignment continues to be    confirmed by the IANA in the Assigned Numbers RFCs.  (I can't say    that it was assigned by the IANA as the assignment preceded the    organization.) 
  194.  
  195.    The basic packet format is shown here.  All multi-bytes values are in    network byte order.  Unless otherwise specified, all values given are    in decimal.  Unused fields should be set to zero, but the recipient    should not depend on that setting. 
  196.  
  197.    As was mentioned earlier, there are both simple and extended forms,    of which the simple form is a proper subset of the extended form.  A    server should support both.  I will describe both forms in parallel. 
  198.  
  199.    Simple Form 
  200.  
  201.    The fields are: 
  202.  
  203.       offset       length  field 
  204.  
  205.       0    1       version       1    1       type       2    2       nonce value       4    1       username length (to server) / response (to client)       5    1       password length (to server) / reason (to client) 
  206.  
  207.    in the usual packet layout format: 
  208.  
  209.     0                   1                   2                   3     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    :    Version    :     Type      :             Nonce             :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    : User len/Resp : PW len/Reason :            data...            :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  Finseth                                                         [Page 7] 
  220.  RFC 1492                         TACACS                        July 1993 
  221.  
  222.     Extended Form 
  223.  
  224.    The fields are: 
  225.  
  226.            offset  length  field 
  227.  
  228.            0       1       version            1       1       type            2       2       nonce value            4       1       username length            5       1       password length            6       1       response            7       1       reason            8       4       result1            12      4       destination host, IP address            16      2       destination port            18      2       line            20      4       result2            24      2       result3            26      varies  data: username + password 
  229.  
  230.    in the usual packet layout format: 
  231.  
  232.     0                   1                   2                   3     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    :    Version    :     Type      :             Nonce             :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    :   User len    : Password len  :   Response    :    Reason     :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    :                           Result 1                            :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    :                      Destination Address                      :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    :           Dest Port           :             Line              :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    :                           Result 2                            :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    :           Result 3            :            data...            :    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 
  233.  
  234. 2.1 Fields 
  235.  
  236.    The VERSION field specifies the version number.  It must be zero for    simple or 128 (80 hexadecimal) for extended. 
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  Finseth                                                         [Page 8] 
  243.  RFC 1492                         TACACS                        July 1993 
  244.  
  245.     The TYPE field encodes the request type.  Values are: 
  246.  
  247.            LOGIN           1            RESPONSE        2       (server to client only)            CHANGE          3            FOLLOW          4            CONNECT         5            SUPERUSER       6            LOGOUT          7            RELOAD          8            SLIPON          9            SLIPOFF         10            SLIPADDR        11 
  248.  
  249.    Other values below 128 are reserved for future use.  Values from 128    to 255 are reserved for local use. 
  250.  
  251.    Note that the semantics of the CHANGE, FOLLOW, RELOAD requests have    not been determined. 
  252.  
  253.    The NONCE field is set by the client to an arbitrary value.  Its    purpose is to allow clients that may have multiple outstanding    requests to determine which request a response is for. The server    must copy this value to the reply unaltered. 
  254.  
  255.    The USERNAME LENGTH field is set by the client to the length of the    username in characters.  Legal values are 0 to 255, inclusive. The    server must copy this value to the reply unaltered. 
  256.  
  257.    The PASSWORD LENGTH is set by the client to the length of the    password in characters. Legal values are 0 to 255, inclusive. The    server must copy this value to the reply unaltered. 
  258.  
  259.    The RESPONSE field should be set by the client to zero.  The server    sets the value to one of: 
  260.  
  261.            value   meaning 
  262.  
  263.            1       accepted            2       rejected 
  264.  
  265.    Other values below 128 are reserved for future use.  Values from 128    to 255 are reserved for local use. 
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  Finseth                                                         [Page 9] 
  274.  RFC 1492                         TACACS                        July 1993 
  275.  
  276.     The REASON field should be set by the client to zero, except for    LOGOUT and SLIPOFF requests, which may use values of 4, 5, or 6.  The    server sets the value to one of: 
  277.  
  278.            value   meaning         notes 
  279.  
  280.            0       none            used for ACCEPTED or if the server                                    is ornery            1       expiring            2       password            3       denied            4       quit            user quit normally            5       idle            idle timeout            6       drop            carrier dropped            7       bad             too many bad passwords 
  281.  
  282.    The values from 4 to 6 will only be used for reasons for LOGOUT or    SLIPOFF requests: they will not be returned by the server.  Other    values below 128 are reserved for future use.  Values from 128 to 255    are reserved for local use. 
  283.  
  284.    The RESULT1 field should be set by the client to zero.  For LOGIN or    CONNECT requests, it is set by the server as specified in the request    description.  For all other requests, it should be set by the server    to zero. 
  285.  
  286.    The DESTINATION HOST field is set by the client.  On CONNECT, SLIPON,    and SLIPOFF requests it specifies an IP address.  It should be set to    zero on all other requests.  For SLIPON and SLIPOFF request, this    value should be the IP address assigned to the line.  For CONNECT    requests, this value is the IP address of the host that the user is    attempting to connect to.  The server copies this value to the reply. 
  287.  
  288.    The DESTINATION PORT field is set by the client.  On CONNECT requests    it specifies the port number that the user is attempting to connect    to.  It should be set to zero on all other requests. The server    copies this value to the reply. 
  289.  
  290.    The LINE field is set by the client to the line number that the    request is for.  The server copies this value to the reply. 
  291.  
  292.    The RESULT2 field should be set by the client to zero.  For LOGIN or    CONNECT requests, it is set by the server as specified in the request    description.  For all other requests, it should be set by the server    to zero. 
  293.  
  294.    The RESULT3 field should be set by the client to zero.  For LOGIN or    CONNECT requests, it is set by the server as specified in the request 
  295.  
  296.  
  297.  
  298. Finseth                                                        [Page 10] 
  299.  RFC 1492                         TACACS                        July 1993 
  300.  
  301.     description.  For all other requests, it should be set by the server    to zero. 
  302.  
  303.    The DATA field contains just the text of the username and password,    with no separator characters (you use username length and password    length to sort them out).  The server does not copy the values to the    reply. (However, the server does copy the username length and    password length fields to the reply.) The username data may be in    upper case: comparisons should be case-insensitive. 
  304.  
  305. 2.2 What a Client Does 
  306.  
  307.    The client must format and send a UDP request to port 49.  It    constructs the request by following these steps: 
  308.  
  309.            - set the version to 128            - set the type to that of the request            - set the nonce to a unique value that is different from all              outstanding requests            - set the username length            - set the password length            - set the response to zero            - set the reason to zero (except for LOGOUT and SLIPOFF)            - set the result1 to zero            - if CONNECT, SLIPON, or SLIPOFF, set the destination address              to the IP address, otherwise set it to zero            - if CONNECT, set the destination port to the port, otherwise              set it to zero            - set the line            - set the result2 to zero            - set the result3 to zero            - copy the username to the location just after result3            - copy the password to the location just after the end of the              username 
  310.  
  311.    Send the request.  Wait for a reasonable (and hopefully configurable)    period of time.  If no response has been received, retry a reasonable    (and hopefully configurable) number of times.  Reasonable default    wait times are 5 seconds and retries are 2. 
  312.  
  313.    If a response has been received, use the nonce value (and as many    other fields as you like) to match it to an outstanding request.  If    there is no matching outstanding request, take appropriate (and    hopefully configurable) action such as discarding and/or logging the    packet.     If the response matches an outstanding request, examine the response    and reason codes and take whatever action you deem correct.  For 
  314.  
  315.  
  316.  
  317. Finseth                                                        [Page 11] 
  318.  RFC 1492                         TACACS                        July 1993 
  319.  
  320.     responses to LOGIN and CONNECT requests, also incorporate the    result1, result2, and result3 values as you deem correct. 
  321.  
  322. 2.3 What a Server Does 
  323.  
  324.    Upon receipt of a UDP format request, the server examines the data in    the request packet and determines its response.  It constructs the    reply by following these steps: 
  325.  
  326.            - set the version to 128            - set the type to RESPONSE (2)            - copy the nonce value            - copy the username length value            - copy the password length value            - set the response value to the desired response            - set the reason value to the desired reason            - if LOGIN or CONNECT, set the result1 else zero the result1            - copy the destination host value            - copy the destination port value            - copy the line value            - if LOGIN or CONNECT, set the result2 else zero the result2            - if LOGIN or CONNECT, set the result3 else zero the result3            - do NOT copy the username or password data 
  327.  
  328.    (As always, be liberal in what you expect and conservative in what    you send.) Send the response.  Do not attempt to retry, as you have    no basis for determining whether a retry is required.  Any retries    are up to the client.  This, of course, implies that requests are    idempotent.  They aren't, of course, so the retries must be    considered when trying to assemble requests into connections. 
  329.  
  330. 3.0 TCP Encoding 
  331.  
  332.    This section describes the TCP encoding of the requests and    responses.  This encoding is not compatible with the historical    TACACS protocol.  However, it is somewhat more "modern" in that it    has been updated to provide for current feature needs. 
  333.  
  334.    This protocol does not use a reserved port.  Instead, it must be    possible to configure the ports used by both the the client and    server. 
  335.  
  336.    The basic request format is shown here.  The request consists of four    lines of ASCII text.  All numeric values are expressed in ASCII as    decimal integers. 
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  Finseth                                                        [Page 12] 
  343.  RFC 1492                         TACACS                        July 1993 
  344.  
  345.             <version> <type> <parameters>            <username>            <password>            <line> 
  346.  
  347.    Each line in the example corresponds to one line of text.  That is,    the lines are separated with <CR>/<LF> (13/10 decimal) pairs.  In no    event may "bare" <CR> or <LF> characters appear within a field.  In    addition, <NUL> (0 decimal) characters may not be sent. 
  348.  
  349.    The <version> and <type> fields are separated with one or more    <SPACE> (32 decimal) or <TAB> (9 decimal) characters. 
  350.  
  351.    The <parameters> field is optional.  If present, it is separated from    the <type> field and internal parameters separated from each other by    or more <SPACE> or <TAB> characters.  Any trailing <SPACE> or <TAB>    characters present on this line should be ignored by the server: they    should not be taken to imply a trailing empty field. 
  352.  
  353.    In theory there are no line length limits.  In practice, lines should    not exceed 255 characters (counting the <CR> and <LF>) and probably    should be 80 characters or less. 
  354.  
  355. 3.1 Fields 
  356.  
  357.    The VERSION field specifies the version number.  It must be 1.  Other    values below 128 are reserved for future use.  Values from 128 to 255    are reserved for local use. 
  358.  
  359.    The TYPE field encodes the request type.  Values are: 
  360.  
  361.            AUTH            LOGIN            CONNECT            SUPERUSER            LOGOUT            SLIPON            SLIPOFF 
  362.  
  363.    I.e., the keyword simply encodes itself.  It must be in upper case.    Keywords that begin with the letter "X" are reserved for local use. 
  364.  
  365.    The USERNAME field contains the text of the username.  Leading and    trailing <SPACE> or <TAB> characters are considered significant.  The    username data may be in upper case: comparisons should be case-    insensitive. 
  366.  
  367.    The PASSWORD field contains the text of the password.  Leading and 
  368.  
  369.  
  370.  
  371. Finseth                                                        [Page 13] 
  372.  RFC 1492                         TACACS                        July 1993 
  373.  
  374.     trailing <SPACE> or <TAB> characters are considered significant. 
  375.  
  376.    The LINE field is set by the client to the line number that the    request is for. 
  377.  
  378. 3.2 Responses 
  379.  
  380.    Appendix E of STD 10, RFC 821 describes the general theory of reply    codes.  The this protocol follows the format described in that    document.  In a nutshell, replies are of the form: 
  381.  
  382.            <number> <text> 
  383.  
  384.    Where <number> is a three-digit decimal value and <text> is an    arbitrary text string, presumably containing only printing text    characters (<SP> (32 decimal) through "~" (126 decimal)).  At least    one <SP> (32 decimal) character separates the number from the text.    A <CR>/<LF> sequence follows the text. 
  385.  
  386.    The three digit codes completely determine the response.  The text    should be considered an explanatory comment for human understanding.    However, even without knowing all values, the first digit can be used    to determine the overall nature of the response.  The encodings are: 
  387.  
  388.            1       Positive Preliminary: the request is acceptable,                    but no action will be taken until an additional                    request is made (not used in this version of the                    protocol) 
  389.  
  390.            2       Positive Completion 
  391.  
  392.            3       Positive Intermediate: the request is acceptable                    so far, but has not been completely transferred                    (not used in this version of the protocol) 
  393.  
  394.            4       Transient Negative: the request is not acceptable                    for now.  It is acceptable to retry, as another                    instance may have a different result. 
  395.  
  396.            5       Permanent Negative: the request is not acceptable 
  397.  
  398.    The text portion is optional (i.e., may be the empty string) and it    describes the meaning of the message in human readable form. 
  399.  
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  Finseth                                                        [Page 14] 
  407.  RFC 1492                         TACACS                        July 1993 
  408.  
  409.     While different server implementations will result in different    messages, the following are suggested: 
  410.  
  411.            201 accepted: # # #            202 accepted, password is expiring: # # #            401 no response; retry            501 invalid format            502 access denied 
  412.  
  413.    The ": # # #" in the first two messages is the suggested way of    returning the three result codes for LOGIN and CONNECT requests. 
  414.  
  415. 3.3 What a Client Does 
  416.  
  417.    The client opens a TCP connection to the locally-configured address    and port.  It sends the request by sending: 
  418.  
  419.            - the character "1"            - one or more <SPACE> or <TAB> characters            - the request type as an ASCII string            - if an AUTH, send one or more <SPACE> or <TAB> characters              and the authentication style            - if a CONNECT, SLIPON, or SLIPOFF, send one or more <SPACE>              or <TAB> characters and the IP address in dotted decimal              notation            - if a CONNECT, send one or more <SPACE> or <TAB> characters              and the port number in decimal            - a <CR>/<LF>            - the username (or hostname for SLIPADDR)            - a <CR>/<LF>            - the password            - a <CR>/<LF>            - the line            - a <CR>/<LF> 
  420.  
  421.    Then read one line from the connection and close the connection.    This encoding lets TCP take care of waiting, retries, and matching up    requests and responses.     Examine the response line and take whatever action you deem correct. 
  422.  
  423. 3.4 What the Server Does 
  424.  
  425.    The server waits on the locally-specified port for requests.  When    one is made, it reads four lines of input. 
  426.  
  427.    It examines the first line for a valid version number and request.    It also records any optional parameters. 
  428.  
  429.  
  430.  
  431. Finseth                                                        [Page 15] 
  432.  RFC 1492                         TACACS                        July 1993 
  433.  
  434.     It uses the username, password, and line number along with any other    information it deems fit to determine its response. 
  435.  
  436.    It then sends exactly one line of response, terminated by a    <CR>/<LF>, and closes the connection. 
  437.  
  438. 4.0 Pros and Cons 
  439.  
  440.    Advantages to using the UDP format: 
  441.  
  442.            - lower overhead            - compatible with historical standard            - some existing equipment supports it 
  443.  
  444.    Advantages to using the TCP format: 
  445.  
  446.            - easier to implement, especially on machines with no or              poor UDP support            - simpler, cleaner syntax            - potentially wider range of error codes, and support for              temporary and negotiated authentication sequences 
  447.  
  448.  5.0 Security Notes 
  449.  
  450.    While the protocol itself has been described, there are a number of    other considerations worth mentioning. 
  451.  
  452.    First, the protocol carries the username and password in clear text    in either a single UDP packet or a TCP stream.  As such, if an    attacker is capable of monitoring that data, the attacker could    capture username/password pairs.  Implementations can take several    steps to minimize this danger: 
  453.  
  454.    - Use point-to-point links where possible. 
  455.  
  456.    - Physically secure the transmission medium. 
  457.  
  458.    - If packets must traverse multiple network segments, use a secure    routing subsystem.  This implies: 
  459.  
  460.            - Tight control over router configurations.            - Tight control over routing protocols.            - Avoid use of bridges, as they can be silently fooled into              duplicating packets. 
  461.  
  462.    Second, this protocol potentially opens up a new way of probing    usernames and passwords.  Thus, implementations may wish to have 
  463.  
  464.  
  465.  
  466. Finseth                                                        [Page 16] 
  467.  RFC 1492                         TACACS                        July 1993 
  468.  
  469.     servers: 
  470.  
  471.            - limit responses to a controlled list of clients,            - throttle the rate of responding to requests,            - log all failures (and possibly successes, too). 
  472.  
  473.    Third, this protocol essentially allows clients to offload    accept/reject decisions to servers.  While an obvious implementation    would simply use the server's native login mechanism to make the    determination, there is no reason to limit implementations to that    mechanism. Servers could: 
  474.  
  475.            - use alternate lists of accounts (e.g., password files),            - use alternate mechanisms for accessing the accounts (e.g.,              a database, NIS),            - use alternate algorithms (e.g., SecureID cards),            - translate the request to another protocol and use that              protocol to make the determination (e.g., Kerberos). 
  476.  
  477.    Fourth, the use of a "fanout" server (described in the next section)    allows for: 
  478.  
  479.            - centralized logging of usage for attack analysis            - centralized policy: 
  480.  
  481.                    - ability to block selected specific users                    - ability to block selected user names (e.g., don't                      allow "root" or "guest")                    - ability to block poor passwords (e.g., none or weak) 
  482.  
  483. 6.0 Case Study 
  484.  
  485.    This section presents the basic steps used by the implementation at    the University of Minnesota.  Two examples will be used.  The first    is a basic terminal login.  The second is a database access    verification. 
  486.  
  487.    Usernames are in one of three forms: 
  488.  
  489.            First.M.Last-#@umn.edu            First.M.Last-#            user@host 
  490.  
  491.    A name in the first form is converted to one in the second. 
  492.  
  493.    A name in the second form is looked up in the University-wide    directory system.  If found, the associated electronic mail address    is treated as if the third form was entered. 
  494.  
  495.  
  496.  
  497. Finseth                                                        [Page 17] 
  498.  RFC 1492                         TACACS                        July 1993 
  499.  
  500.     The third form specifics the name of a computer whose manager has    agreed to perform validations and the name of an account on that    computer. 
  501.  
  502.    The system that we use allows for many requesting clients (typically    modem pools).  Further, each client can support multiple distinct    pools of users.  For example, lines 1-20 could be general access, but    lines 21-25 could be 800-numbers with a restricted set of valid    users.  The system supports this distinction by specifying which    validation computers are legal for each modem pool. 
  503.  
  504. 6.1 Terminal Login 
  505.  
  506.    On the Cisco Terminal Server: 
  507.  
  508.    - accept a connection    - request a username and password    - pack the request into a UDP TACACS packet and send to the central      fanout 
  509.  
  510.    Central Fanout: 
  511.  
  512.    - accept a request    - if the request is not in a valid format, return "nope"    - log the request    - if the source IP address is not in a list of valid clients,      status = "nope"    - else if the username contains invalid characters, status = "nope"    - else            if the username is of the form First.M.Last-#@umn.edu,                    convert to First.M.Last-#            if the username is of the form First.M.Last-#,                    look up the name in the directory                    if the name is not found, status = "nope"                    otherwise, use the e-mail address as the username 
  513.  
  514.            if the user is on a special "blocked" list, status = "nope"                    and send mail warning that access to a blocked                    account was attempted            split the username into user and host parts            if the host is not on a list of known servers,                    status = "nope"            else if the host is not allowed to validate this type of                    request for this pool, status = "nope" 
  515.  
  516.            now format a request for validation of the user and send it            to the specified host 
  517.  
  518.  
  519.  
  520.  Finseth                                                        [Page 18] 
  521.  RFC 1492                         TACACS                        July 1993 
  522.  
  523.             if no response, status = "nope"            otherwise set the status to the returned status 
  524.  
  525.    - log what response is going to be returned    - return the response 
  526.  
  527.    Validation Host: 
  528.  
  529.    This machine can run a "stripped down" version of the central fanout.    It need perform no special validation or logging, with one exception. 
  530.  
  531.    - accept a request    - if the request is not in a valid format, return "nope"    - if the request is not from the central fanout, return "nope"    - figure the return status    - return the response 
  532.  
  533. 6.2 Database Access Verification 
  534.  
  535.    In this example, assume that a database is only to be accessed by    faculty and staff. 
  536.  
  537.    Mainframe: 
  538.  
  539.    - the user is on the mainframe and makes a request    - the program requests username and password    - the program packs the request into a UDP TACACS packet and send to      the central fanout 
  540.  
  541.    Central Fanout: 
  542.  
  543.    - accept a request    - if the request is not in a valid format, return "nope"    - log the request    - if the source IP address is not in a list of valid clients,      status = "nope"    - else if the username contains invalid characters, status = "nope"    - else            if the username is of the form First.M.Last-#@umn.edu,                    convert to First.M.Last-#            if the username is of the form First.M.Last-#,                    look up the name in the directory                    if the name is not found, status = "nope"                    otherwise, use the e-mail address as the username                       and obtain the staff status from the directory            if the user is on a special "blocked" list, status = "nope"                    and send mail warning that access to a blocked                    account was attempted 
  544.  
  545.  
  546.  
  547. Finseth                                                        [Page 19] 
  548.  RFC 1492                         TACACS                        July 1993  
  549.  
  550.            split the username into user and host parts            if the host is not on a list of known servers,                    status = "nope"            else if the host is not allowed to validate this type of                    request for this pool, status = "nope" 
  551.  
  552.            now format a request for validation of the user and send it            to the specified host 
  553.  
  554.            if no response or status is "nope", status = "nope" 
  555.  
  556.            else if the user originally gave a user@host mail address,                    do a directory lookup and obtain the staff status 
  557.  
  558.            set the status to the staff status    - log what response is going to be returned    - return the response 
  559.  
  560.    Note that the validation host is unchanged. 
  561.  
  562. References 
  563.  
  564.    [RFC821] Postel, J. "Simple Mail Transfer Protocol", STD 10, RFC 821,    USC/Information Sciences Institute, August 1982. 
  565.  
  566.    [RFC1340] Reynolds, J. and J. Postel, "Assigned Numbers," STD 2, RFC    1340, USC/Information Sciences Institute, July 1992. 
  567.  
  568.    Anderson, Brian; Ruth, Greg; Ditmars, Peter; Eisner, Sharon;    Delsignore, John (1985) TAC Access Control System Protocols, Second    Edition: August 16 1985. BBN Tech Memo CC-0045. 
  569.  
  570.    Cisco Systems, Inc. (September 1992) Communications Server    Configuration and Reference.  Menlo Park, California. 
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588. Finseth                                                        [Page 20] 
  589.  RFC 1492                         TACACS                        July 1993 
  590.  
  591.  Security Considerations 
  592.  
  593.    Security issues are the main topic of this memo. 
  594.  
  595. Author's Address 
  596.  
  597.    Craig A. Finseth    Networking Services    Computer and Information Services    University of Minnesota    130 Lind Hall    207 Church St SE    Minneapolis MN 55455-0134 
  598.  
  599.    Phone: +1 612 624 3375    Fax:   +1 612 626 1002 
  600.  
  601.    EMail: Craig.A.Finseth-1@umn.edu, or           fin@unet.umn.edu 
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  Finseth                                                        [Page 21] 
  634.  
  635.