zoukankan      html  css  js  c++  java
  • 配置cisco设备记录用户命令

    R1(config)# aaa new-model 
    R1(config)# aaa accounting commands 0 default start-stop group local 
    R1(config)# aaa accounting commands 1 default start-stop group local 
    R1(config)# aaa accounting commands 15 default start-stop group local 
    R1(config)# line vty 0 4 
    R1(config-line)# accounting commands 0 default 
    R1(config-line)# accounting commands 1 default 
    R1(config-line)# accounting commands 15 default 
    R1(config-line)#exit
    R1(config)#line vty 5 15
    R1(config-line)# accounting commands 0 default 
    R1(config-line)# accounting commands 1 default 
    R1(config-line)# accounting commands 15 default 
    R1(config-line)#exit
    ===============================================================================

    Enter configuration commands, one per line. End with CNTL/Z.
    Router1(config)#aaa new-model
    Router1(config)#aaa accounting exec default start-stop group local
    Router1(config)#aaa accounting connection default start-stop group local
    Router1(config)#aaa accounting system default stop-only group local
    注释 除了可以记录用户输入命令以外还提供了
    exec(用户开始和中止exec 会话的时间记录),
    connection(用户发起外部连接的时间,地址,数据包多少等信息记录比如telnet ssh 等)
    system(系统重启,禁用AAA 等系统信息)等三种系统事件的记录

  • 相关阅读:
    使用asp.net调用谷歌地图api
    JAVASCRIPT+DHTML实现表格拖动
    strcpy & memcpy区别
    python解析邮件的时候编码问题
    snprintf不能使用"字符串指针"赋值,可以使用字符数组
    二级结构体的赋值和访问方法
    C lstat major MAJOR 获得设备号
    C解析config
    C语言中的DEBUG
    opencv实例二:缩放一张图片
  • 原文地址:https://www.cnblogs.com/qzqdy/p/11864865.html
Copyright © 2011-2022 走看看