首页 > 其他分享 >Dell-switch ios升级

Dell-switch ios升级

时间:2024-10-16 10:50:05浏览次数:19  
标签:upgrade C# ios system Dell Z9100 switch stack unit

Dell-switch ios升级
1. show boot system stack-unit all 查看目前ios的版本

2.上传ios到A和B分区
DellEMC# upgrade system tftp: A:
Address or name of remote host []: 172.29.8.33
Source file name []: FTOS-Z9100-ON-9.14.1.5.bin

DellEMC#upgrade system tftp: B:
Address or name of remote host []: 10.16.127.35
Source file name []: FTOS-Z9100-ON-9.14.1.5.bin

3.设置启动引导ios
boot system stack-unit 1 primary system://A
boot system stack-unit 1 secondary system://B
boot system stack-unit 1 default system: A: 设置默认引导区

4.保存
write memory

5.重启
reload

6.查看版本
show version

Dell switch 固件升级 (不需要上传文件)
1. DL-DELL#sh revision 查出当前的运行的固件版本
-- Stack unit 1 --
Z9100-ON MSS FPGA : 2.1
Z9100-ON MSS IAP : 2.1
Z9100-ON OOB-FPGA : 1.0
DL-DELL#sh system stack-unit 1 查出当前的运行的固件版本
-- Unit 1 --
Boot Flash : 3.23.2.9
Boot Selector : 3.23.0.0-7

2. 需要升级到什么样子的版本
DL-DELL#sh os-version
RELEASE IMAGE INFORMATION :
---------------------------------------------------------------------
Type Version Target checksum
boot flash 3.23.2.13 Control Processor passed
BOOTSEL IMAGE INFORMATION :
---------------------------------------------------------------------
Type Version Target checksum
boot selector 3.23.0.0-8 Control Processor passed
FPGA IMAGE INFORMATION :
---------------------------------------------------------------------
stack-unit 1 Z9100-ON MSS FPGA 2.1
stack-unit 1 Z9100-ON MSS IAP 2.4
stack-unit 1 Z9100-ON OOB-FPGA 1.0

Z9100-ON MSS FPGA升级:
DellEMC#upgrade fpga-image system cpld stack-unit 1 booted
DellEMC#power-cycle stack-unit 1
Proceed with power-cycle? Confirm [yes/no]:yes

Z9100-ON MSS IAP升级:
DellEMC#upgrade mss-iap-image stack-unit 1 booted

Z9100-ON OOB-FPGA升级:
DellEMC#upgrade fpga-image system fpga stack-unit 1 booted
DellEMC#power-cycle stack-unit 1
Proceed with power-cycle? Confirm [yes/no]:yes

bootselector升级:
DellEMC#upgrade boot bootselector-image stack-unit 1 booted
DellEMC#reload

bootflash升级:
DellEMC#upgrade boot bootflash-image stack-unit 1 booted
DellEMC#reload

 



标签:upgrade,C#,ios,system,Dell,Z9100,switch,stack,unit
From: https://blog.51cto.com/u_14555989/12266681

相关文章

  • C#中判断的应用说明二(switch语句)
    一.判断的定义说明判断结构要求程序员指定一个或多个要评估或测试的条件,以及条件为真时要执行的语句(必需的)和条件为假时要执行的语句(可选的)。下面是大多数编程语言中典型的判断结构的一般形式:二.判断语句C#提供了以下类型的判断语句,查看每个语句的细节。语句描述switch语......
  • (IOS)VMware虚拟机上安装win10系统(超详细)
    简介虚拟机是一种软件实现的计算机系统,可以在现有的操作系统平台上运行一个或多个虚拟的操作系统。它通过在主机操作系统上创建一个虚拟的硬件平台,并在其上运行一个完整的操作系统,来模拟一个真实的物理计算机。虚拟机可以提供一种隔离的环境,使得不同的操作系统和应用程序可以......
  • 部分品牌电脑进入BIOS方法
    今天来分享一下,部分品牌电脑如何进入bios的方法戴尔(Dell):F2键惠普(HP):F2键或F10键联想(Lenovo):F2键或Fn+F2键(部分机型)宏碁(Acer):F2键华硕(ASUS):F2键微星(MSI):Delete键苹果(Apple):搭载Intel芯片的Mac:Option键搭载AppleSilicon芯片的Mac:长按Command+Option+R进入BIOS的通用步骤关闭电......
  • iOS 在OC 中使用 AEC 的 ECB、CTR模式加解密
    实用实测过的代码。 AEC加解密网上一大把,简单列举一下。CTR模式,搜索了好多,试用了好几个都是代码不完全参数不对造成无法正常运行加解密。不同模式引用了不同的系统库路径。 调整加解密,修改参数 operation:kCCDecrypt/ kCCEncryptAECCTR模式解密#import<CommonCryp......