1、ASA常用管理
management-access inside      #开启远程连接inside口
show snmp-server oidlist          #查看ASA snmp的oid
show vpn-sessiondb svc|l2l|remote      #查看远程VPN连接状态
ASA5525(config)# vpn-sessiondb logoff ?    #注销VPN登陆用户

2、查看接口描述
show interfaces description

3、查看每个模块信息(包括板卡信息)
show inventory   #N6K

4、查看光纤模块的光功率信息
show int trans details

5、ssh登陆配置
crypto key generate rsa modulus 1024
ip domain name kayou.com
ip ssh version 2

6、snmp v3配置
snmp-server group test v3 priv
snmp-server host 172.20.1.233 version 3 priv test
snmp-server community test.com RO
snmp-server enable traps snmp linkdown linkup
snmp-server user test test v3 auth md5 test123 priv des test123 配置用户名和密码
#默认端口为162(show run all | in snmp-server查看snmp默认配置)
查看snmp状态
show snmp
show snmp user
show snmp host

7、使用ftp协议开启自动远程配置备份
archive
 log config
  logging enable
  logging size 200
  notify syslog contenttype plaintext
  hidekeys
 path ftp://192.168.105.207/BJ_SW01/$t($h)-config
 write-memory
ip ftp username network     #ftp登录用户名
ip ftp password 7 cisco       #ftp登录密码

8、交换机堆叠配置
switch 1 renumber 2         #更改交换机堆叠号(需要重启交换机),默认为1
switch 1 priority <1-15>    #优先级越高越优
show switch                     #查看堆叠状态

9、c2960-lanbase-mz.122-53.SE2.bin版本接口802.1X配置
switchport access vlan 100    #接口划入vlan 100
switchport mode access        #接口access模式
authentication event fail action authorize vlan 11    #接口认证失败 vlan 11
authentication event no-response action authorize vlan 100    #接口认证无响应 vlan100
authentication port-control auto     #开启接口控制认证
dot1x pae authenticator     #开启802.1X功能
dot1x timeout quiet-period 10     #认证失败后的静默时间10
dot1x timeout supp-timeout 5     #认证等待的时间5

 

Cisco常用配置和命令的更多相关文章

  1. Redis常用配置和命令总结

    Redis(全称:Remote Dictionary Server 远程字典服务)是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言 ...

  2. LINUX常用配置及命令

    一.   Fedora系统配置 1.      [设置网卡IP] 步骤如下: 1)     用root用户登陆,打开/etc/sysconfig/network-scripts/ifcfg-eth0文 ...

  3. H3C常用配置和命令

    邻居发现命令display lldp neighbor-information list DHCP中继配置dhcp enabledhcp relay server-group 1 ip x.x.x.x ...

  4. docker常用配置以及命令

    1. Docker基本概念 1.1 什么是 docker hub DockHub是一个仓库 https://hub.docker.com/ 仓库是集中存放镜像文件的场所 仓库分为公开仓库(Public ...

  5. Iptables 防火墙常用配置

    转至:https://blog.csdn.net/lswzw/article/details/87971259 Iptables 防火墙常用配置 概念 命令行模式 查看 & 命令 -n:直接显 ...

  6. cisco常用命令详解

    cisco常用命令详解 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.常用命令用法展示 1.命令行模式的来回切换 yinzhengjie>enable #从用户模式切换到 ...

  7. Openstack基础环境交换机常用配置(CISCO 3750G为例)

    NOTE: 用户模式提示符为:cisco> 特权模式提示符为:cisco# 全局配置模式提示符为:cisco(config)# 端口模式提示符为:cisco(config-if)# 基础操作   ...

  8. cisco基本配置命令

    实验命令 router> enable 从用户模式进入特权模式 router# disable or exit 从特权模式退出到用户模式 router# show sessions 查看本机上的 ...

  9. GitHub的SSH key配置以及常用的git命令介绍

    一. GitHub的SSH key配置 (以windows为例,Mac iOS系统类似) SSH Key 是一种方法来确定受信任的计算机,从而实现免密码登录.Git是分布式的代码管理工具,远程的代码管 ...

随机推荐

  1. tr 命令用法

     tr a. 替换全部字符 [root@bogon scripts]# tr [a-z] [A-Z]  < /etc/fstab    将读出的结果全部替换成大写字母  (取一行作为展示效果) ...

  2. Python3 tkinter基础 Entry validate validatecommand 失去焦点时,检查输入内容

             Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda ...

  3. SCU 4438 Censor(Hash)题解

    题意:找出字符串p中的w串删除,反复操作,直到找不到w,输出这个串 思路:哈希处理前缀和,如果值相同就删掉. 代码: #include<iostream> #include<algo ...

  4. POJ-1038 Bugs Integrated, Inc. (状压+滚动数组+深搜 的动态规划)

    本题的题眼很明显,N (1 <= N <= 150), M (1 <= M <= 10),摆明了是想让你用状态压缩dp. 整个思路如下:由于要填2*3或者3*2的芯片,那么就要 ...

  5. (转) The care and maintenance of your adviser

    The care and maintenance of your adviser Ever since the advent of graduate school, students have com ...

  6. java核心问题总结

    Java 核心概念 equals 与 hashCode 的异同点在哪里?Java 的集合中又是如何使用它们的. Math.Integer.Double等这些封装类在使用equals()方法时,已经覆盖 ...

  7. strlen函数,strcat函数,strcpy函数,strncpy函数,strcmp函数

    strcpy函数: char *strcpy(char *Dest , const char *Src) { assert((Dest != NULL) && (Src != NULL ...

  8. 51nod 1437 迈克步(单调栈)

    http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1437 题意: 思路: 单调栈题.求出以每个数为区间最大值的区间范围即可. ...

  9. NPOI 导入Excel和读取Excel

    1.整个Excel表格叫做工作表:WorkBook(工作薄),包含的叫页(工作表):Sheet:行:Row:单元格Cell. 2.NPOI是POI的C#版本,NPOI的行和列的index都是从0开始 ...

  10. WebSocket 教程

    转载自:http://www.ruanyifeng.com/blog/2017/05/websocket.html WebSocket 是一种网络通信协议,很多高级功能都需要它. 本文介绍 WebSo ...