一,實驗拓撲服務器
二,各地址分配spa
三,各個PC間的鏈接code
1.PC-A PING PC-Bserver
2.PC-A PING PC-Cblog
3.PC-B PING PC-C路由
四,配置過程it
一、在路由器R1上配置一個本地用戶帳號,經過AAA和console線和VTY鏈接認證io
(1)AAA認證:console
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
(2)VTY鏈接認證:class
R1(config)# aaa authentication login telnet-login local R1(config)# line vty 0 4 R1(config-line)# login authentication telnet-login
二、在路由器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
三、在路由器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
五,驗證登陸
驗證Telnet配置
用AAA TACACS+服務器驗證用戶EXEC登入
用AAA RADIUS服務器驗證用戶EXEC登入