zoukankan      html  css  js  c++  java
  • 基于服务器的AAA配置实验

    基于服务器的AAA配置实验

    基本拓扑

    网络地址分配

    PC之间ping情况

    A PING B

     C PING B

    A PING C

    R1的配置

    1.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线

    R1(config)# aaa authentication login telnet-login local

    R1(config)# line vty 0 4

    R1(config-line)# login authentication telnet-login

    R2的配置

    1.用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

    4.R3的配置

    1.用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

  • 相关阅读:
    物体也能正常移动
    同时按住两个键
    连续子数组的最大和Java实现
    Entity Framework基础01
    MVC知识进阶01
    面向对象基础进阶03
    面向对象基础进阶02
    面向对象基础进阶01
    little skill---ping
    SqlServer------范式小结
  • 原文地址:https://www.cnblogs.com/wicher/p/10554368.html
Copyright © 2011-2022 走看看