Authentication:用于验证用户的访问,如login access,ppp network access等。

Authorization:在Autentication成功验证后,Authorization用于限制用户可以执行什么操作,可以访问什么服务。
Accouting:记录Authentication及Authorization的行为。

Part I. 安全协议

1>Terminal Access Controller Access Control System Plus (TACACS+)
Cisco私有的协议。加密整个发给tacacs+ server的消息,用户的keys。
支持模块化AAA,可以将不同的AAA功能分布于不同的AAA Server甚至不同的安全协议,从而可以实现不同的AAA Server/安全协议实现不同的AAA功能。
配置命令
Router(config)# tacacs-server host IP_address [single-connection] [port {port_#}] [timeout {seconds}] [key {encryption_key}] 
Router(config)# tacacs-server key {encryption_key} 注:
(1)single-connection:为Router与AAA Server的会话始终保留一条TCP链接,而不是默认的每次会话都打开/关闭TCP链接。
(2)配置两个tacacs-server host命令可以实现tacacs+的冗余,如果第一个server fail了,第二个server可以接管相应的服务。第一个tacacs-server host命令指定的server为主,其它为备份。
(3)配置inbound acl时需要permit tacacs+的TCP port 49。
(4) 如果两个tacacs-server使用不同的key,则需要在tacacs-server host命令中指定不同的encryption_key,否则可以使用tacacs-server key统一定制。但tacacs-server host命令中的key定义优先于tacacs-server key命令。
Troubleshooting:
命令:
#show tacacs
#debug tacacs 关于TACACS+的操作信息。
#debug tacacs events 比debug tacacs更详细的信息,包括router上运行的 TACACS+ processes消息。

Router# show tacacs 
Tacacs+ Server            : 10.0.0.10/49               
Socket opens:          3              
Socket closes:          3              
Socket aborts:          0              
Socket errors:          0            
Socket Timeouts:          0    
Failed Connect Attempts:          0         
Total Packets Sent:          42         
Total Packets Recv:          41           
Expected Replies:          0   
No current connection

2>Remote Authentication Dial-In User Service (RADIUS)
RADIUS是一个开放的标准,定义于RFC 2865和2865。
RADIUS使用一个共享的密钥,并且只加密用户的keys,而不是TACACS+的整个AAA消息。用户的keys不会明文在网络上传递。

RADIUS应用范围:
(1)使用multiple vendors设备,并且需要一个单独的安全协议用于AAA。
(2)需要实现资源记录,如跟踪用户登录router多长时间及用户访问网络多长时间。
(3)smart card authentication systems只支持RADIUS。
(4)在用户初始化访问一个设备时,对他进行preauthentication。
RADIUS的使用限制:
(1) 不支持Apple Talk's Remote Access Protocol(ARAP),the NetBIOS Frame Control Protocol(NBFCP),NetWare's Asynchronous Serveices Interface(NASI)及X.25 PAD链接。
(2)RAIUDS不支持模块化AAA操作,即只可以使用RADIUS来完成全部的AAA操作。
(3)只支持one-way authentication.不支持two-way authentication(如:两个router之间的PPP CHAP Authentication).
(4)RADIUS将Authentication及Authorization功能集成为"Authentication"。

配置命令:
Router(config)# radius-server host IP_address [auth-port {port_#}] [acct-port {port_#}] [timeout {seconds}] [retransmit {retries}] [key {key_value}] [alias {hostname | IP_address}]
Router(config)# radius-server timeout {seconds} 
Router(config)# radius-server retransmit {retries} 
Router(config)# radius-server key {key_value}
注:
(1)RADIUS Server daemon监听Authentication消息默认使用UDP 1645.Authorization消息默认使用UDP 1646.
(2)配置inbound acl以permit UDP 1645/1646。
(3)RFC 2026中指出,RADIUS也可能使用UDP 1812/1813,一些新的RADIUS Server同时监听UDP 1645/1646及UDP 1812/1813。所以配置router inbound acl以permit相应的端口。
(4)RADIUS默认timeout为5s,retransmit为3.

Troubleshooting:
show radius statistics
debug radius [brief] 
加上brief参数功能类似于debug tacacs命令,不加则类似于debug tacacs event命令。
Router# show radius statistics
                          Auth.      Acct.       Both           
Maximum inQ length:        NA         NA          1         
Maximum waitQ length:        NA         NA          1         
Maximum doneQ length:        NA         NA          1         
Total responses seen:         5          0          5       
Packets with responses:         5          0          5    
Packets without responses:         0          0          0   
Average response delay(ms):      1880          0       1880   
Maximum response delay(ms):      6540          0       6540    
Number of Radius timeouts:         0          0          0         
Duplicate ID detects:         0          0          0

3>Kerberos

其中TACACS+及RADIUS全面支持AAA。Kerberos只支持Authentication。

Item
TACACS+
RADIUS
Comparison

Connection
TCP
UDP
UDP has less overhead; however, with TCP, TACACS+ more quickly can detect a failed server and switch over to a backup. TCP can do this by having the router look for an RST (closed connection) message or by using TCP keepalives.

Encryption
Payload
Passwords
TACACS+ is more secure because it encrypts the entire payload, which includes all user and AAA message information; RADIUS encrypts only passwords, so everything else, including usernames and other account information, is sent in clear text.

Authentication and authorization
Separate
Combined
RADIUS combines authentication and authorization functions, which means that you must use the same server or group for these functions. TACACS+ separates them, giving you more control over the server that handles these functions.

WAN protocols
PPP, ARAP, NetBIOS, NASI, and X.25 PAD
PPP and SLIP
TACACS+ is better suited for remote-access situations that involve multiple dialup protocols, whereas RADIUS supports only PPP and SLIP.

Router command authorization
Yes
No
TACACS+ enables you to control what commands an authenticated user can execute on a router; RADIUS does not.

Accounting
Basic
Advanced
The one big advantage that RADIUS has over TACACS+ is its robust accounting, which is why many ISPs use it to monitor PPP connections.

Part II. Server Groupings

默认使用tacacs-server host或radius-server host命令配置的AAA Server都是按命令出现的顺序分为主/备服务器,可以使用aaa group server radius/tacacs+命令覆盖实现部分配置的host做为验证server。同时可以实现不同的aaa group实现不同的AAA功能,如group1实现Authentication,group2实现Authorization等。
配置命令:
Router(config)# aaa group server radius | tacacs+ {group_name}
Router(config-sg)# server {IP_address | hostname} [auth-port {port_#}] [acct-port {port_#}]
注:
(1)不能在aaa group server中混合使用多种安全协议。

Part III. Authentication

router支持authentication以下两种基本的访问模式。
1>Character mode:用户通过console, auxiliary, TTY, or VTY线路获得到router的 user或privileged EXEC访问。
2>Packet mode:用户通过使用 PPP, SLIP, ARAP, NASI, NetBIOS, or X.25 PAD等远程访问协议建立一个data-link layer链接。

Method lists:
指定一系列的认证方式。如group tacacs+,group radius,local,none等。
每个authentication命令最多只能同时使用4种认证methods。

认证的结果:
Success:此method可达,且用户通过验证。
Fail:此mothod可达,但用户验证失败。
Error:有两种情况
(1)此mothod中指定的aaa server group中的一个AAA Server不可达,第二个AAA Server被尝试。
(2)此mothod指定的方式不存在,或AAA group中的所有的servers都不可达。 
注:
1>如果router试图访问的所有mothods结果都是unsuccessful,则router acl会自动deny以后的authentication request。
2>如果指定的mothod是local,且没有与用户提供的用户名相匹配的username,则验证结果为Error。

Authtication Command Syntax:
aaa authtication login {认证列表名称} {验证方法}
{认证列表名称}
default:默认的authentication认证方式。
name:指定特定的认证方式列表,实现更具体的认证。
{验证方法}
enable使用enable帐号密码验证
group:使用Server Group验证
krb5:使用kerberos V验证
krb5-telnet:使用kerberos V验证telnet
line:使用线路密码验证
local:使用本地帐号密码验证
local-case:使用本地帐号密码验证(区分大小写)
none:不进行验证

aaa authentication enable default {验证方法}
{验证方法}
enable
group
line
none

aaa authentication ppp {认证列表名称} {验证方法}
{认证列表名称}
default:默认的authentication认证方式。
name:指定特定的认证方式列表,实现更具体的认证。
{验证方法}
group
if-needed:如果用户已经通过tty线路身份验证,则在此不验证用户身份,直接通过
krb5
local-case
local
none

Authtication Configuration:
Router(config)# aaa new-model 
Router(config)# aaa authentication login {default | list_name} method1 [method2...]
Router(config)# aaa authentication enable default method1 [method2...]
Router(config)# line [aux | console | tty | vty] start_line_# [end_line_#]
Router(config-line)# login authentication {default | list_name}
Router(config-line)# timeout login response {seconds}

Method Keyword
Description

enable
The password in the enable secret or enable password commands is used to perform the authentication.

line
The line password command, on the line that the user is trying to access, is used to perform authentication.

local
The username commands are used to perform authentication.

local-case
The username commands are used to perform authentication. However, the username that the user enters is treated as case sensitive.

none
No authentication is performed.

group radius
All configured RADIUS servers can be used to perform authentication.

group tacacs+
All configured TACACS+ servers can be used to perform authentication.

group group_name
Only servers in the specified aaa group server command are used to perform authentication.

注:
1>aaa authentication login:User EXEC Authentication
2>aaa authentication enable:Privileged EXEC Authentication
3>timeout值为cisco router等待多长时间将此认证method认为是error。默认timeout为30s,取值范围1~300s。
4>上图列出的methods,aaa authentication enable不支持local和local-case。

Username and Password Prompts:
默认用户登录时,cisco会给出这样的提示符:
Username: 
Password: 
可以使用以下命令修改这些默认的提示:
Router(config)# aaa authentication username-prompt {prompt_string} Router(config)# aaa authentication password-prompt {prompt_string}
注:
TACACS+/RADIUS Server也支持修改默认的提示符,如果同时配置aaa authentication username-prompt/password-prompt命令和TACACS+/RADIUS Server配置,则cisco优先使用TACACS+/RADIUS Server配置的prompt。

Login Banners:
可以使用aaa来代替默认用banner命令配置的登录提示消息:
Router(config)# aaa authentication banner {stop_character message stop_character} 注:最多支持2996个字符。 
也可以修改用户在输入无效的用户名/密码时的提示:
Router(config)# aaa authentication fail-message {stop_character message stop_character}
注:最多支持2996个字符。

Login Attempts:
默认cisco router允许用户尝试3次登录,最后disconnect用户的链接。可以使用以下命令修改允许尝试的次数:
Router(config)# aaa authentication attempts login {#_of_attempts} 注:
1>可配置的次数为1~25。
2>推荐将网络外接设备的login attempts次数修改为1,这样可以减少对密码暴力破解的机会。

Authentication Troubleshooting:
Router# debug aaa authentication

Part IV. Authorization

Authorization Command Syntax:
aaa authorization {授权类型} {授权列表名称} {授权方法}
{授权类型}
auth-proxy:当用户成功通过authentication后,此method允许用户通过router/firewall建立到链接的其它网络的多个链接,具体的的链接数在AAA Server端配置实现。
commands:限制用户可以在router上执行的命令。
config-commands:限制用户可以在router上执行的配置命令。
exec:限制用户到router的EXEC访问。其主要用于dialup环境,用户使用PPP的PAP/CHAP认证方式,在通过认证后通过router访问网络,此处可以限制其在通过认证后,只能实现网络访问,而不能EXEC到router。
network:当用户通过authentication并获得一个EXEC,其就可以在一个dailup接口上建立一个PPP/SLIP连接。此method用于限制此种行为。
reverse-access:在通过authentication后,此method可以限制用户使用router的虚拟终端反向telnet到其它设备上。
ipmobile:配置对mobile链接的授权。
configuration:限制对AAA服务的配置。
{授权列表名称}
default:默认的authentication认证方式。
name:指定特定的认证方式列表,实现更具体的认证。
{授权方法}
group
if-authtication:如果用户通过了authentication,则允许它执行相应的操作。
local
none

Authorization Configuration:
Router(config)# aaa authorization commands {level_#} {default | list_name} [method1 [method2...]] 
Router(config)# line [aux | console | tty | vty] start_line_# [end_line_#] 
Router(config-line)# authorization commands {level_#} {default | list_name}

Method Keyword
Description

local
The username commands are used to perform authorization.

none
No authorization is performed. This parameter is typically not used.

group radius
All configured RADIUS servers can be used to perform authorization.

group tacacs+
All configured TACACS+ servers can be used to perform authorization.

group group_name
Only servers in the specified aaa group server command are used to perform authorization.

Configuration Mode Command Authorization:
一般情况使用aaa authorization后,用户执行的每个命令都被aaa限制执行,这可能对configure termianl模式的命令有一些影响,可以使用下面命令使aaa authorization忽略对configure termianl模式的命令的限制:
Router(config)# no aaa authorization config-commands

Authorization Troubleshooting:
Router# debug aaa authorization

Part V. Accounting

配置accouting主要有两部分:
1>type of accouting:记录哪些信息。
2>method:将记录的信息发送到哪。

Accouting Command Syntax:
aaa accouting {统计类型} {统计列表名称} {统计记录方式} {统计方法}
{统计类型}
commands {level}:记录用户执行的所有的命令,包括privilege/configuration mode命令。
connection:记录router通过Telnet, LAT, TN32760, PAD, and rlogin等方式建立的到其它设备的链接信息。信息包括建立链接的用户名,日期/时间及在建立的链接上执行的命令。
exec:记录router的EXEC会话信息。信息包括用户名,会话起始日期和时间,用户设备的IP。
network:记录dialup链接的信息,如PPP/SLIP。信息包括相应链接的packets数目及bytes数目。
resource:记录dialup链接信息及phone call的资源信息。
system:记录system-level事件。如接口up/down,router reload,accouting被启用/禁止。
{统计列表名称}
default:默认的authentication认证方式。
name:指定特定的认证方式列表,实现更具体的认证。
{统计记录方式}
start-stop:在事件开始和结束时都建立相应的记录。先执行后记录。
stop-only:只在事件结束时建立相应的记录。
none:禁用对特定服务的记录。
wait -start:类似于start-stop,在事件开始和结束时都建立相应的记录。不同的是此模式只在成功链接到AAA Server并能实现记录时才允许用户执行相应的事件,否则等待。即:先记录后执行。(此模式在Cisco IOS 12.1及以后的版本中被移除,并不再支持)
{统计方法}
group

Methods of Accounting:
RADIUS
TACACS+
注:
1>只能使用以上两种method在aaa accouting中。
2>Cisco的RADIUS实现不能实现aaa accouting,只能使用TACACS+。

Accouting Configuration:
Router(config)# aaa accounting {system | network | exec | connection | commands level_#} {default | list_name} {start-stop | stop-only | none} [method1 [method2...]] 
Router(config)# line [aux | console | tty | vty] line_# [ending_line_#] 
Router(config-line)# accounting {arap | commands level_# | connection | exec} {default | list_name} 
Router(config)# interface type [slot_#/]port_# 
Router(config-if)# ppp accounting {default | list_name}

Service Keyword
Description

system
Enables accounting to capture system-level events, such as an interface status changing or the router reloading (only the default method list is supported for this service)

network
Enables accounting for all network services, such as SLIP, PPP, NCP, and ARAP

exec
Enables accounting for EXEC sessions, listing what users logged in and when they logged into and out of the router

connection
Enables accounting for outbound connections from the router, such as Telnet and TN3270

commands level_#
Enables accounting for commands, listing the commands (and their privilege levels) that were executed by a user

resource
Enables accounting for dialup connections, listing resource information for them

Suppressing Null Username Records:
当指定多种authentication mothods,并在最后使用none,且其它mothods都不可达,用户通过none成功登录router时,accouting仍然会产生一个相应 的登录记录,不过没有相应的登录用户名信息,因为none method不需要提供任何登录信息。这样的记录没有太大意义,可以使用以下命令来使aaa accouting不记录这样的事件:
Router(config)# aaa accounting suppress null-username

Enabling Broadcast Accounting:
aaa accouting初始的限制就是在使用多个AAA Accouting Server实现日志记录时,记录信息只会发给Primary AAA Accouting Server,并于Primary Accouting Server发送给其它Servers。
可以使用以下命令,在aaa accouting命令中加入broadcast参数,将日志信息一次性的广播到所有的AAA Accouting Servers:
Router(config)# aaa accounting {system | network | exec | connection | commands level_#} {default | list_name} {start-stop | stop-only | (none} <broadcast> [method1 [method2...]]

Accounting Troubleshooting:
Router# debug aaa accounting
Router# show accounting
Router# show aaa user all

Part VI. IOS命令权限

所有有IOS命令都被分为0~15的权限级别。
默认Cisco Router只使用3个级别:
0级:包括5个命令(disable,enable,exit,help,logou),现在未用于任何线路。
1级:用户EXEC模式,所有用户登录后的默认级别。
15级:特权EXEC模式。

1>所有用户只可以执行其权限级别以下的命令。
2>指定用户权限级别。
username {name} privilege {level} password {password}
3>查看用户权限级别。
show privilege
4>查看用户当前权限级别可以执行的命令。
?
5>修改特定命令的权限级别。
privilege {configure|exec} level {level} {command}

例:
username sense privilege 7 password test
privilege configure level 7 snap-server host
privilege configure level 7 snap-enable traps
privilege exec level 7 ping
privilege exec level 7 configure terminal

转载于:https://blog.51cto.com/jasonliping/1172792

CCNP学习之路之AAA详解(authentication、Authorization、Accounting)相关推荐

  1. 获取map第一个的key和value_Hadoop学习之路(3)Map-Shuffle-Reduce详解与源码

    @[TOC] 1 Split阶段 首先,接到hdf文件输入,在mapreduce中的map task开始之前,将文件按照指定的大小切割成若干个部分,每一部分称为一个split,默认是split的大小与 ...

  2. spring学习笔记03-spring-DI-依赖注入详解(通过xml配置文件来配置依赖注入)

    spring学习笔记03-spring-DI-依赖注入详解 1.概念 2.构造函数注入 3.set方法注入 4.集合的注入 需要被注入的实体对象 package com.itheima.service ...

  3. java 检查bytebuf长度_Java学习笔记16-Netty缓冲区ByteBuf详解

    Java学习笔记16-Netty缓冲区ByteBuf详解 Netty自己的ByteBuf ByteBuf是为解决ByteBuffer的问题和满足网络应用程序开发人员的日常需求而设计的. JDK Byt ...

  4. Java NIO学习篇之缓冲区ByteBuffer详解

    定义: ByteBuffer是Buffer的实现类之一,是一个通用的缓冲区,功能要比其他缓冲区子类多.支持直接内存.是一个抽象类.子类实现是HeapByteBuffer(非直接缓冲区子类),Direc ...

  5. Python学习二:词典基础详解

    作者:NiceCui 本文谢绝转载,如需转载需征得作者本人同意,谢谢. 本文链接:http://www.cnblogs.com/NiceCui/p/7862377.html 邮箱:moyi@moyib ...

  6. 【学习笔记】线段树详解(全)

    [学习笔记]线段树详解(全) 和三个同学一起搞了接近两个月的线段树,头都要炸了T_T,趁心态尚未凉之前赶快把东西记下来... [目录] [基础]作者:\((Silent\)_\(EAG)\) [懒标记 ...

  7. html学习 - jquery事件监听详解

    html学习 - jquery事件监听详解 html学习 - jquery事件监听详解 监听方法 监听方法参数解释 click参数 事件自动执行问题解决 bind方法 live方法 监听方法 在jqu ...

  8. OpenCV-Python学习之(一)waitKey()函数详解

    OpenCV-Python学习之(一)waitKey()函数详解 waitKey()函数详解 : 1.1 waitKey()--这个函数是在一个给定的时间内(单位ms)等待用户按键触发;如果用户没有按 ...

  9. 【STM32】标准库与HAL库对照学习教程八--串口通信详解

    [STM32]标准库与HAL库对照学习教程八--串口通信详解 一.前言 二.准备工作 三.通信的基本概念 1.通信方式 2.串行通信与并行通信 (1)串行通信 (2)并行通信 3.异步通信与同步通信 ...

最新文章

  1. 如何在TVM上集成Codegen(上)
  2. 终于有人把如何精通C++讲明白了!
  3. AndFix解析——(上)
  4. 配置和使用OCS 2007会议功能
  5. 【图论】【Floyed】舞会邀请(CODE[VS] 2604)
  6. C/C++线程与多线程工作笔记0006---VC++中_T()的作用
  7. 酷炫可视化+强于excel的结合体!超高效的表格工具,不用可惜
  8. java看懂程序_手把手教你运行第一个 Java 程序,看不懂你来骂我!
  9. android跑马灯代码,Android中实现跑马灯效果
  10. COMSOL有限元仿真深度指南:构建与管理自定义材料库
  11. jQuery WEUI select的使用
  12. mysql 字段扩容_关于数据库扩容与缩容
  13. 计算机网络——数字信号(五)
  14. java 图片去水印_Java实现图片水印
  15. 网站备案和域名实名认证的重要性
  16. 黑鲨3能升级鸿蒙5g吗,红魔5g和黑鲨3哪个好-红魔5g和黑鲨3参数对比
  17. wps怎么关闭视图保护_怎么在PPT2013中清除编辑受保护视图功能?
  18. Scratch3.0----数据类型
  19. C#上位机开发(十二)—— SQLite的使用
  20. python:计算股票 CAPM

热门文章

  1. GIS经纬度坐标转换为unity3D的世界坐标
  2. 数二第一章函数、极限、连续做题总结
  3. mac 备份文件 太大 时间机器_Mac 时间机器 Time Machine 备份速度太慢的解决方法
  4. react中用useEffect模拟组件生命周期
  5. EXCEL设置下拉框,根据不同选项变换颜色
  6. 电商如何解决无证经营支付业务问题?四种方案孰优孰劣?
  7. Python实验--线性回归+梯度下降预测波士顿房价
  8. 交叉编译OpenCV3.4.1报错
  9. 调试ASP程序时,遇到程序运行错误时怎么查看具体错误位置呢?
  10. Sack Panic漏洞TCP MSS机制(二)(together with myself)