交换机的常用操作项1、更改主机名 switch(config)#hostname sw12、设置进入特权模式的密码switch(config)#enable password 1234switch(config)#enable secret cisco3、设置console口密码switch(config)#line console 0switch(config-line)#password 123switch(config-line)#login4、查看mac地址列表 switch#show mac-address-table5、查看mac地址列表刷新时间 switch#show mac-address-table aging-time6、更改mac地址列表刷新时间 switch(config)#mac-address-table aging-time 2007、查看当前配置(RAM) switch#show running-config8、查看交换机的配置(NVRAM) switch#show startup-config9、保存配置switch#copy running-config startup-configswitch#write10、恢复出厂默认设置switch#erase startup-configswitch#reload11、查看cdp的全局信息 switch#show cdp12、查看接口的cdp配置信息 switch#show cdp interface f0/213、查看有关cdp包的统计信息 switch#show cdp traffic14、查看邻居信息 switch#show cdp neighbors15、查看所有入口项的详细信息switch#show cdp neighbors detailswitch#show cdp entry *16、添加接口的描述信息 switch(config-if)# description connection to routerA17、设置交换机的网关 switch(config)#ip default-gateway 192.168.1.118、关掉DNS解析 switch(config)#no ip domain-lookup19、实现交换机的远程管理switch(config)#enable secret ciscoswitch(config)#intface valn 1switch(config-if)#ip address 192.168.1.100 255.255.255.0switch(config-if)#no shutdownswitch(config)#line vty 0 4switch(config-line)#password 123switch(config-line)#loginc:\>telnet 192.168.1.10020、交换机的密码恢复1、将交换机的电源拔下2、按mode键将电源插上,当出现switch:时将手松开3、switch:flash_init //加载到flash中4、switch:dir flash: //查看flash中的文件5、rename flash:config.text flash:config.old //更改文件名6、boot //重新启动交换机7、rename flash:config.old flash:config.text //将文件名改回8、copy flash:config.text running-config9、enable password cisco //重新设置密码10、write //保存21、创建vlan方法一switch#vlan databaseswitch(vlan)#vlan 10 name scswitch(vlan)#exit22、创建vlan方法二switch(config)#vlan 10switch(config-vlan)#name sc23、删除vlan方法一switch(vlan)#no vlan 10switch(vlan)#exit24、删除vlan方法二 switch(config)#no vlan 1025、删除vlan方法三 switch#delete vlan.dat26、将端口加入到vlan中 switch(config-if)#switchport access vlan 1027、将一组连续的端口加入到vlan中switch(config)# interface range f0/1 – 5switch(config-if-range)#switchport access vlan 1028、将端口从vlan中删除switch(config-if)#no switchport access vlan 10switch(config-if)#switchport access vlan 1switch(config-if-range)#no switchport access vlan 10switch(config-if-range)#switchport access vlan 129、查看所有vlan的摘要信息 switch#show vlan brief30、查看指定vlan的信息switch#show vlan id 1031、Cisco 2600路由器的基本操作从用户模式进入特权模式router>enablerouter#从特权模式进入全局配置模式router#config terminalrouter(config)#为路由器配置主机名router(config)#hostname teacherteacher(config)#进入路由器的以太口配置模式teacher(config)#interface fastethernet 0/0teacher(config_if)#32、查看Cisco 2600路由器的串口状态router#show interface serial 0/0 serial 0/0 is up ,line protocol is up 可操作状态………serial 0/0 is up ,line protocol is up 连接问题…………serial 0/0 is up ,line protocol is down 接口问题…………serial 0/0 is down ,line protocol is down 禁用状态…………serial 0/0 is administratively down ,line protocol is down33、 静态路由的实现router(config)#hostname A A(config)#interface f0/0A(config-if)#ip address 192.168.1.1 255.255.255.0A(config-if)#no shutdownA(config)#interface f0/1 A(config-if)#ip address 192.168.2.1 255.255.255.0A(config-if)#no shutdownA(config)#ip route 192.168.3.0 255.255.255.0 192.168.2.2B(config)#ip route 192.168.1.0 255.255.255.0 192.168.2.134、 配置默认路由 route(config)#ip route 0.0.0.0 0.0.0.0 下一跳地址35、 查看路由表router#show ip route其中C 代表直连的网络,S 代表静态的路由,S*代表默认的路由36、 为Cisco 2600路由器配置密码配置控制台密码router (config)#line console 0router (config-line)#loginrouter (config-line)#password cisco37、 配置特权模式密码 router (config)#enable password cisco38、 配置安全的加密密码 router (config)#enable secret 123439、 配置路由器标识 router(config)#banner motd $This is Aptech company ’s Router! Please don ’t change the configuration whithout permissions $40、 对所有密码进行加密 router (config)#service password-encryption41、 配置超时 router(config)#line console 0router(config-line)#exec-timeout 0 0 //第一个0代表分钟,第二个0代表秒42、 显示同步 router(config)#line console 0router(config-line)#logging synchronous43、 配置禁用DNS router(config)#no ip domain-lookup44、 利用三台路由器实现静态路由和默认路由45、路由器密码恢复重启路由器按Ctrl+Break 键进入ROM Monitor 模式rommon 1>confreg 0x2142rommon 2>reset重启后选择norouter>enable 192.168.1.1 192.168.2.2 192.168.2.1 192.168.3.1 192.168.1.10 192.168.3.10router#copy startup-config running-configrouter#config terminalrouter(config)#enable password ciscorouter(config)#config-register 0x2102router#copy running-config startup-configrouter#reload46、单臂路由——实现不同vlan之间的通信V L A N11switch#vlan databaseswitch(vlan)#vlan 2switch(vlan)#vlan 32、将端口加入vlanswitch(config)#interface range f0/6 -8switch(config-if-range)#switchport access vlan 2switch(config-if-range)# interface range f0/9 -11switch(config-if-range)#switchport access vlan 33、配置trunk switch(config)#interface f0/12switch(config-if)#switchport mode trunk4、配置路由器的子接口封装dot1q,并设置IP地址router(config)#interface f0/0.1router(config-subif)#encapsulation dot1q 1router(config-subif)#ip address 192.168.0.1 255.255.255.0router(config-subif)#no shutrouter(config)#interface f0/0.2router(config-subif)#encapsulation dot1q 2router(config-subif)#ip address 192.168.1.1 255.255.255.0router(config-subif)#no shutrouter(config)#interface f0/0.3router(config-subif)#encapsulation dot1q 3router(config-subif)#ip address 192.168.2.1 255.255.255.0router(config-subif)#no shutrouter(config)#interface f0/0router(config-if)#no shut5、设置pc的IP地址和默认网关47、0RIP版本V1和V2 的区别RIP v1发送路由更新时不携带子网掩码,属于有类路由协议发送路由更新时,目标地址为广播地址:255.255.255.255RIP v2发送路由更新时携带子网掩码,属于无类路由协议发送路由更新时,目标地址为组播地址:224.0.0.948、RIP V1的配置配置步骤:1、配置路由器接口IP地址routerA(config)#interface f0/0routerA(config-if)#ip address 192.168.1.1 255.255.255.0 routerA(config-if)#no shutdownrouterA(config-if)#interface f0/1routerA(config-if)# ip address 10.0.0.2 255.0.0.0 routerA(config-if)#no shutdownrouterB(config)#interface f0/0routerB(config-if)#ip address 10.0.0.1 255.0.0.0 routerB(config-if)#no shutdownrouterB(config)#interface f0/1routerB(config-if)#ip address 20.0.0.2 255.0.0.0 routerB(config-if)#no shutdownrouterC(config)#interface f0/0routerC(config-if)#ip address 20.0.0.1 255.0.0.0 routerC(config-if)#no shutdown 192.168.2.0/24192.168.1.0/24routerC(config)#interface f0/1routerC(config-if)#ip address 192.168.2.2 255.255.255.0routerC(config-if)#no shutdown2、在路由器上启动RIP进程,并宣告网络号:routerA(config)#router riprouterA(config-router)#network 10.0.0.0routerA(config-router)#network 192.168.1.0routerB(config)#router riprouterB(config-router)#network 10.0.0.0routerB(config-router)#network 20.0.0.0routerC(config)#router riprouterC(config-router)#network 20.0.0.0routerC(config-router)#network 192.168.2.03、验证配置是否正确1)查看路由表router#show ip route2)查看路由协议配置router#show ip protocol3)打开RIP协议调试命令router#debug ip rip4、在PC上设置IP地址、子网掩码、默认网关,用ping命令测试连通性49.RIP V2的配置10.1.1.0/24 192.168.1.0/24配置步骤:1、配置各路由器接口IP地址routerA(config)#interface f0/0routerA(config-if)#ip address 10.1.1.1 255.255.255.0routerA(config-if)#no shutdownrouterA(config-if)#interface f0/1routerA(config-if)# ip address 192.168.1.1 255.255.255.0 routerA(config-if)#no shutdownrouterB(config)#interface f0/0routerB(config-if)#ip address 10.1.2.1 255.255.255.0routerB(config-if)#no shutdownrouterB(config)#interface f0/1routerB(config-if)#ip address 192.168.1.2 255.255.255.0routerB(config-if)#no shutdownrouterC(config)#interface f0/0routerC(config-if)#ip address 192.168.1.3 255.255.255.0routerC(config-if)#no shutdownrouterC(config)#interface f0/1routerC(config-if)#ip address 192.168.2.1 255.255.255.0routerC(config-if)#no shutdown2、在路由器上配置RIP V2 路由协议routerA(config)#router riprouterA(config-router)#version 2routerA(config-router)#no auto-summaryrouterA(config-router)#network 10.0.0.0routerA(config-router)#network 192.168.1.0routerB(config)#router riprouterB(config-router)#version 2routerB(config-router)# no auto-summaryrouterB(config-router)#network 10.0.0.0routerB(config-router)#network 192.168.1.0routerC(config)#router riprouterC(config-router)# version 2routerC(config-router)# no auto-summaryrouterC(config-router)#network192.168.1.0routerC(config-router)#network 192.168.2.03、验证配置是否正确1)查看路由表router#show ip route2)查看路由协议配置router#show ip protocol3)打开RIP协议调试命令router#debug ip rip4、在PC上设置IP地址、子网掩码、默认网关,用ping命令测试连通性49、上传路由器上的IOSrouter#show flash //查看IOS文件名router#copy flash tftpSource filename []? c2600-ik8o3s-mz.122-11.T.binAddress or name of remote host []? 192.168.1.11Destination filename [c2600-ik8o3s-mz.122-11.T.bin]?下载IOS到路由器router#copy tftp flash上传路由器上配置文件router#copy nvram:startup-config tftp:Address or name of remote host []? 192.168.1.11Destination filename [router-config]? startup-config下载配置文件到路由器router#copy tftp:startup-config nvramC2600路由器IOS被删除的恢复方法:1、ctrl+breakrommon 1>IP_ADDRESS=192.168.0.100 //路由器接口地址rommon 2>IP_SUBNET_MASK=255.255.255.0rommon 3>DEFAULT_GATEWAY=192.168.0.100rommon 4>TFTP_SERVER=192.168.0.254rommon 5>TFTP_FILE=c2600-ik8o3s-mz.122-11.T.binrommon 6>tftpdnld。