美文网首页网络工程师学习笔记
cisco Switching-升级/更换IOS

cisco Switching-升级/更换IOS

作者: 凯歌响起 | 来源:发表于2018-07-24 14:31 被阅读92次

交换机备份

    交换机

Switch(config)# interface vlan 99

Switch(config-if)# ip address 192.168.1.2 255.255.255.0

Switch(config-if)# exit

Switch(config)# interface f0/1

Switch(config-if)# switchport access vlan 99

    电脑

ip设置为192.168.1.1 255.255.255.0即可

查看flash文件名称

Switch#sh flash:

得到****.bin的文件

    开始备份

Switch#copy flash tftp/ftp/usb

Source filename []? ****.bin

Address or name of remote host []? 服务器的地址

交换机升级

    能正常启动

        交换机

Switch(config)# interface vlan 99

Switch(config-if)# ip address 192.168.1.2 255.255.255.0

Switch(config-if)# exit

Switch(config)# interface f0/1

Switch(config-if)# switchport access vlan 99

        电脑

ip设置为192.168.1.1 255.255.255.0即可

        查看要上传的flash文件名称

得到****.bin的文件

        开始升级

Switch#copy tftp/ftp/usb flash

Address or name of remote host []? 服务器的地址

Source filename []? ****.bin

Switchconfig)# no boot system flash:/旧文件

Switch(config)# boot system flash:/新文件

Switch#reload

        如果flash 不够可以删除flash

delete flash:旧文件名

    不能正常启动

断电后按住面板左边的mode键,插入电源插头给交换机加电,然后在界面输入

switch: flash_init

switch: load_helper

switch: copy xmodem:******.bin flash:******.bin

点击超级终端菜单 传输 > 发送文件 选择Xmodem或者Xmodem-1K协议 然后选择IOS文件发送(该方法速度很慢),传输成功后。

switch: boot flash:******.bin

Switch(config)# boot system flash:xxxxxx.bin

相关文章

  • cisco Switching-升级/更换IOS

    交换机备份 交换机 Switch(config)# interface vlan 99 Switch(config...

  • cisco Routing-升级/更换IOS

    路由器备份 Router(config)#int f0/1 Router(config-if)#ip add 1....

  • cisco Switching-配置ip

    配置IP 交换机里面只能跟vlan和三层交换机的端口(需要no switchport)配置 在vlan中配置 Sw...

  • cisco Switching-端口类型

    cisco网络中,交换机在局域网中最终稳定状态的接口类型主要有四种: access: 主要用来接入终端设备,如P...

  • cisco Switching-以太通道配置

    问题 企业需要增加带宽和网络可用性,以太通道可以同时满足这两个条件,而又无需购买新设备。 方案 以太通道也称为以太...

  • cisco Switching-密码恢复

    密码恢复 断开交换机的电源并重新给交换机加电,在给交换机加电的同时按住交换机前面板上的“模式(Mode)”按钮几秒...

  • 漏洞验证 CVE-2016-1287

    Cisco ASA / IOS IKE Fragmentation Vulnerability 漏洞描述 -由于在...

  • cisco Switching-配置trunk中继链路

    问题 在两台交换机上分别创建vlan2、vlan3,参照如下网络拓扑图将端口加入到指定的vlan并配置IP址,实现...

  • Cisco 高级路由交换技术-基础

    IOS 基本操作命令 简介 Cisco 的网际操作系统(IOS: Internetwork Operation S...

  • cisco Ios

    power on self test开机自检 执行引导装入程序定位加载cisco IOS 软件定位加载定位加载启动...

网友评论

    本文标题:cisco Switching-升级/更换IOS

    本文链接:https://www.haomeiwen.com/subject/ddbemftx.html