博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cisco useful feature and commands
阅读量:5836 次
发布时间:2019-06-18

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

configure DHCP server on Cisco Router:

---------------------------------------
ip dhcp excluded-address 192.168.27.1 192.168.27.50
ip dhcp pool cisco
 network 192.168.27.0 255.255.255.0
 dns-server 192.168.7.20 
 domain-name fagorarrasate.net
 default-router 192.168.27.1 

configure HTTP server:

---------------------
ip http server
username cisco privilege 15 password cisco
ip http authentication local
ip http secure-server
ip http timeout-policy idle 60 life 86400 requests 10000

configure local logon without username and password/ with username and password:

-------------------------------
line con 0
 exec-timeout 0 0
 login local
line vty 0 4
 password cisco
 login
 transport input all

Crack username/password for Cisco router:

-------------------------
after router boot up, in 10s, press FN+Ctrl+B or Ctrl+Break
then, confreg 0x2142
reset
----------
en 
copy start-confi running
config-register 0x2102
no enable pass
no enable secret
exit 
wr

--------------

IPAccounting  archive router configuration

archive router 

 

archive

 path tftp://10.254.254.10/router/

 write-memory

no file verify auto

 


int g2/0

 ip accounting output-packets

 exit

 

sh ip accounting

 

int g2/0

 no ip accounting

 exit

 

 

clear ip accounting

Router# configureterminal

Router(config)#interface ethernet 0/5

Router(config-if)#ip accounting mac-address input

Router(config-if)#ip accounting mac-address output

Router(config-if)#ip accounting precedence input

Router(config-if)#ip accounting precedence output

The followingexample shows how to enable IP accounting with the ability to identify IPtraffic that fails IP access lists and with the number of transit records thatwill be stored in the IP accounting database limited to 100:

 

Router# configureterminal

Router(config)# ipaccounting-transits 100

Router(config)#interface ethernet 0/5

Router(config-if)#ip accounting output-packets

Router(config-if)#ip accounting access-violations

---------------

Copy flash的内容到tftp中:

archive tar /create tftp:1.2.3.4/saved.tar flash:

 

Copy tftp to flash:

archive tar /xtract tftp://192.168.3.250/c1200-k9w7-tar.123-8.JA2.tar flash:

本文转自 zhangfang526 51CTO博客,原文链接:http://blog.51cto.com/zhangfang526/1708069

转载地址:http://ppycx.baihongyu.com/

你可能感兴趣的文章
前端那些事之React篇--helloword
查看>>
swift3.0 常用字符操作 <持续整理>
查看>>
Oracle11g及PL/SQL Developer的安装和配置
查看>>
ios的google解析XML框架GDataXML的配置及使用
查看>>
lua与C++的交互
查看>>
别使用嵌套事务
查看>>
ocatve 安装工具包
查看>>
常用maven配置(打入依赖包,编译插件,ojdbc)
查看>>
018# Adempiere系统的物料管理架构(二)
查看>>
Ubuntu各类软件推荐
查看>>
关于angular post提交数据接收问题
查看>>
查找两个增序数组中第K大的数
查看>>
java程序员为什么使用Groovy
查看>>
netty-当一个客户端连接到来的时候发生了什么
查看>>
Mysql delimiter
查看>>
如何通过 Yum 安装 Pure-ftpd
查看>>
残年已是痴人梦
查看>>
【老孙随笔】技术人如何发财致富?
查看>>
线性表--顺序实现方式 (JAVA)
查看>>
java socket编程实例代码讲解
查看>>