思科设备基本操作

ctrl-Z  退到特权模式
ctrl-A  光标移动到命令行开始部分
ctrl-E  光标移动到命令行结束部分
disable  特权模式退回到命令行模式
?作用    显示命令  显示参数  命令列表
hostname   配置主机名
show version 显示系统ios名称及版本信息
show running-config 显示设备当前配置信息
show startup-config 显示已保存配置信息
copy running-config startup-config   write     保存当前配置信息

空闲一段时间后,重回初始界面问题
(config)# line con 0
(config-if)#exec-timeout 0 0
控制台消息打断输入处理
(config)# line con 0
(config-if)#logging synchronous
禁用DNS查询
(config)#no ip domain-lookup

查看交换mac地址表
show mac-address-table [dynamic]
指定交换机接口的双工模式
(config-if)#duplex {full | half | auto}
指定接口的通信速率
(config-if)#speed {10 | 100 | 1000 | auto}
查看以太网接口工作模式
show interface fastethernet 0/24

查看arp缓存表
show arp
清楚arp缓存
clear arp-cache
arp绑定
arp 1.1.1.1 0011.1111.1111 arpa fastethernet 0/22

路由协议的默认管理距离:
路由协议                              管理距离
直连接口                                 0
静态路由                                 1
外部BGP                                 20
内部EIGRP                               90
IGRP                                   100
OSPF                                   110
RIP                                    120
外部EIGRP                               170
内部BGP                                 200

配置Console口密码
sw1(config)#line console 0
sw1(config-line)#password cisco
sw1(config-line)#login
配置明文特权模式密码
sw1(config)# enable password cisco0
配置密文特权模式密码
sw1(config)# enable secret cisco
加密明文密码
sw1(config)# service password-encryption

路由器密码恢复
按Ctrl+Breack中断IOS加载,进入ROM Monitor模式
修改配置寄存器的值,启动时绕过startup-config文件:
rommon1>confreg 0x2142
rommon2>reset
用startup-config覆盖running-config:
Router#copy startup-config running-config
修改密码:
Router(config)#enable password cisco
修改配置寄存器的值:
Router(config)#config-register 0x2102

交换机密码恢复
拔掉交换机的插头
按住MODE键,插上电源,直到出现“switch:”提示
初始化Flash
switch:flash_init
将config.text文件名改成config.old
switch:rename flash:config.text flash:config.old
启动交换机
switch:boot
把配置文件的名字改回来
switch# rename flash:config.old flash:config.text
手工加载配置文件
switch# copy flash:config.text system:running-config
进入配置模式修改密码

配置VTY密码
sw1(config)# line vty 0 4
sw1(config-line)# password cisco
sw1(config-line)# login

默认网关的配置命令
Switch(config)# ip default-gateway ip-address

通过TFTP服务器升级Cisco路由器IOS
配置TFTP服务器
升级路由器的IOS
Router# copy tftp flash
Address or name of remote host []?? 192.168.1.2
Source filename []?? c2800nm-ipbase-mz.123-6e.bin
Destination filename[c2800nm -ipbase-mz.123-6e.bin]?? (回车)
备份路由器IOS
Router# copy flash tftp

通过FTP服务器升级Cisco路由器IOS
配置FTP服务器
配置FTP服务器目录
配置用户名、密码
在路由器上配置登录FTP用户名、密码
Router(config)# ip ftp username benet
Router(config)# ip ftp password cisco
升级路由器的IOS
Router# copy ftp flash
Address or name of remote host []?? 192.168.1.2
Source filename []?? c2800nm -ipbase-mz.123-6e .bin
Destination filename[c2800nm -ipbase-mz.123-6e.bin]?? (回车)
备份路由器IOS
Router# copy ftp flash

IOS文件损坏或丢失后,进行IOS文件恢复
使用Console线连接交换机和主机
加载IOS失败,初始化FLASH
switch:flash_init
InitialiaingFlash...
……
……
通过Xmodem协议传输IOS文件
switch: copy Xmodem: flash: c2960-lanbase-mz.122-35.se5.bin
设置超级终端的Xmodem选项
超级终端菜单“传送”中,单击“发送文件”
启动交换机
Switch:boot

你可能感兴趣的:(配置,version,控制台,信息,思科设备)