基本服务器的AAA实验

一、实验拓扑

基本服务器的AAA实验_第1张图片

二、网络地址分配

基本服务器的AAA实验_第2张图片

三、不同网段互相PING通

PC-A ping PC-B

基本服务器的AAA实验_第3张图片

 

PC-A ping PC-C

基本服务器的AAA实验_第4张图片

 

PC-B ping PC-C

基本服务器的AAA实验_第5张图片

  

 

四、配置过程

(1)在路由器R1上配置本地用户账号和本地AAA认证

R1(config)#username admin1 password admin1
R1(config)# aaa new-model
R1(config)#aaa authentication login default local
R1(config)#line console 0
R1(config-line)#login authentication default

 

配置VTY连接认证

R1(config)# aaa authentication login telnet-login local
R1(config)# line vty 0 4
R1(config-line)# login authentication telnet-login

 

(2)在路由器R2上配置基于TACACS+服务器上的AAA认证

R2(config)#username admin2 password admin2
R2(config)#tacacs-server host 192.168.2.2
R2(config)#tacacs-server key admin2
R2(config)#aaa new-model
R2(config)#aaa authentication login default group tacacs+ local
R2(config)#line console 0
R2(config-line)#login authentication default

(3)在路由器R3配置基于RADIUS服务器的AAA认证

R3(config)#username admin3 password admin3
R3(config)#tacacs-server host 192.168.3.2
R3(config)#tacacs-server key admin3
R3(config)#aaa new-model
R3(config)#aaa authentication login default group radius local
R3(config)#line console 0
R3(config-line)#login authentication default

TACACS+服务器配置

基本服务器的AAA实验_第6张图片

RADIUS服务器配置

基本服务器的AAA实验_第7张图片

五、测试结果

TASK1

基本服务器的AAA实验_第8张图片

TASK2基本服务器的AAA实验_第9张图片

TASK3

基本服务器的AAA实验_第10张图片

TASK4

基本服务器的AAA实验_第11张图片

 

  

你可能感兴趣的:(基本服务器的AAA实验)