博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Basic Cisco Configs
阅读量:5322 次
发布时间:2019-06-14

本文共 2115 字,大约阅读时间需要 7 分钟。

AAA配置

conf t

!
aaa new-model
!
aaa group server tacacs+ LOGINTAC
server 172.16.30.220
Server 172.16.40.1
!
tacacs-server host 172.16.30.220 key n3w3gg
tacacs-server host 172.16.40.1 key n3w3gg
!
ip tacacs source-interface gi 0/1
!
aaa authentication login default group LOGINTAC local
aaa authentication enable default enable group LOGINTAC
aaa authorization config-commands
aaa authorization exec default group LOGINTAC if-authenticated
aaa authorization commands 1 default if-authenticated
aaa authorization commands 15 default if-authenticated
aaa accounting commands 1 default start-stop group LOGINTAC
aaa accounting commands 15 default start-stop group LOGINTAC
!
!
end
wr

 

Clock  配置

CLIENT:

clock timezone PST -8
clock summer-time PDT recurring 2 Sun Mar 2:00 1 Sun Nov 2:00
ntp authentication-key 1 md5 n3w3gg
ntp server 10.1.37.21 key 1

NTP SERVER:

!

ntp clock-period 17177077
ntp source GigabitEthernet4.1
ntp master 4
ntp update-calendar
ntp server 10.1.37.10
ntp server 10.1.37.52

 

默认配置

en

config t
!
hostname **********
!
service timestamps log datetime localtime show-timezone
service timestamps debug datetime localtime show-timezone
service password-encryption
no ip domain-lookup
!
enable secret **********
!
user admin privilege 15 secret **********
!
line con 0
exec-timeout 200 0
logging synchronous
!
line vty 0 4
exec-timeout 200 0
logging synchronous
!
end
wr

 

默认交换机配置

VTP MODE CLIENT

VTP DOMAIN WH7
VTP password

Spanning-tree portfast bpduguard default

!
Errdisable recovery cause bpduguard
Errdisable recovery interval 240

 

Snmp-syslog-netflow

Use for syslog filter (logging facility local0 - Switches)

(logging facility local1 - Routers)

logging trap errors
logging facility local1
logging 10.1.37.22
snmp-server community $reed RO
snmp-server host 10.1.37.22 $reed

ip flow-export source GigabitEthernet0/1

ip flow-export version 5
ip flow-export destination 10.1.37.21 9996

( ip flow-export destination 71.94.141.193 9996 = only on external devices )

( logging 71.94.141.194 = For external devices)

interface Serial1/0

ip route-cache flow

转载于:https://www.cnblogs.com/shixiaomin/p/10861022.html

你可能感兴趣的文章
Hyper-V Centos7 网络设置 虚拟机固定IP
查看>>
Python环境搭建(安装、验证与卸载)
查看>>
一个.NET通用JSON解析/构建类的实现(c#)
查看>>
Windows Phone开发(31):画刷 转:http://blog.csdn.net/tcjiaan/article/details/7460226
查看>>
Windows Phone开发(5):室内装修 转:http://blog.csdn.net/tcjiaan/article/details/7269014
查看>>
记Angular与Django REST框架的一次合作(2):前端组件化——Angular
查看>>
08.存储Cinder→5.场景学习→08.Backup Volume→1.概述与配置
查看>>
详谈js面向对象 javascript oop,持续更新
查看>>
关于这次软件以及pda终端的培训
查看>>
jQuery上传插件Uploadify 3.2在.NET下的详细例子
查看>>
解决input框自动填充为黄色的问题
查看>>
音视频基础知识(一)
查看>>
CyclicBarrier的使用
查看>>
小程序开发笔记
查看>>
Web框架高级功能之模板、拦截器、Json、打包
查看>>
如何辨别一个程序员的水平高低?是靠发量吗?
查看>>
安装scikit-learn过程记录
查看>>
数据库的标识符可以有多长
查看>>
新手村之循环!循环!循环!
查看>>
在创业公司上班的感受
查看>>