现在一般升级配置交换,用ftp还是tftp,哪个好!有没有配置案例!
(0)
最佳答案
1. 以交换机作为FTP 客户端方式完成下载
(1) 在用户PC(假设IP地址为10.10.110.1)上运行FTP 服务器程序,用户自行创建FTP Client用户和密码,并指定该用户可访问的工作路径,把待升级启动软件包保存在FTP Client用户可访问的工作路径下。
FTP 服务器程序由用户自己购买和安装,交换机不附带此软件。
(2) 确保用户PC和IRF之间路由可达。
(3) 将待升级启动软件包(以newest.ipe为例)下载到Master存储介质的根目录下。
# 在用户视图下,执行ftp命令并根据系统提示输入登录用户名和密码,设备将作为FTP 客户端登录到FTP 服务器。
<Sysname> ftp 10.10.110.1
Trying 10.10.110.1...
Press CTRL+K to abort
Connected to 10.10.110.1
220 FTP service ready.
User(10.10.110.1:(none)):username ---输入用户名
331 Password required for username.
Password: ---输入用户密码
230 User logged in
# 在FTP客户端视图下,执行binary命令将传输模式设置为二进制模式,以便传输程序文件。
ftp> binary
200 Type set to I.
# 在FTP客户端视图下,执行get命令将待升级启动软件包从FTP服务器下载到Master存储介质(Flash)的根目录下。
ftp> get newest.ipe
227 Entering Passive Mode (10,10,110,1,17,97).
125 BINARY mode data connection already open, transfer starting for /newest.ipe
226 Transfer complete.
32133120 bytes received in 35 seconds (896. 0 kbyte/s)
ftp> bye
221 Server closing.
2. 以交换机作为FTP服务器方式完成下载
(1) 确保用户PC和IRF之间路由可达。
(2) 配置IRF作为FTP服务器,并添加本地用户。
# 在系统视图下,执行ftp server enable命令开启FTP服务。
[Sysname] ftp server enable
# 在系统视图下,执行local-user命令添加本地用户,此处以用户名为abc为例。
[Sysname] local-user abc
# 在本地用户视图下,执行password命令设置该本地用户的认证密码,此处以密码为pwd为例。
[Sysname-luser-manage-abc] password simple pwd
# 在本地用户视图下,执行service-type命令指定该本地用户可以使用的服务类型为FTP。
[Sysname-luser-manage-abc] service-type ftp
# 在本地用户视图下,执行authorization-attribute命令配置该本地用户的用户角色为network-admin,使其可以向服务器工作路径上传文件。
[Sysname-luser-manage-abc] authorization-attribute user-role network-admin
# 在本地用户视图下,执行quit命令返回系统视图。
[Sysname-luser-manage-abc] quit
# 在系统视图下,执行quit命令返回用户视图。
[Sysname] quit
(3) PC作为FTP客户端访问设备,并将待升级启动软件包上传到FTP服务器。
# 以FTP方式登录FTP服务器。
c:\> ftp 1.1.1.1
Connected to 1.1.1.1.
220 FTP service ready.
User(1.1.1.1:(none)):abc ---输入用户名
331 Password required for abc.
Password: ---输入用户密码
230 User logged in.
# 配置文件传输模式为二进制模式。
ftp> binary
200 TYPE is now 8-bit binary.
# 将待升级启动软件包(此处以newest.ipe为例)上传并保存到Master设备存储介质(Flash)的根目录下。
ftp> put newest.ipe
200 PORT command successful
150 Connecting to port 10002
226 File successfully transferred
ftp: 发送 32133120 字节,用时 64.58Seconds 497.60Kbytes/sec.
3. 以交换机作为TFTP客户端方式完成下载
(1) 在用户PC(假设IP地址为10.10.110.1)上运行TFTP 服务器程序,设置工作路径,并把待升级启动软件包保存在TFTP 服务器的工作路径下。
TFTP 服务器程序由用户自己购买和安装,交换机不附带此软件。
(2) 确保用户PC和IRF之间路由可达。
(3) 将待升级启动软件包(以newest.ipe为例)下载到Master存储介质的根目录下。
# 在用户视图下,执行tftp命令将待升级启动软件包从PC下载到Master存储介质(Flash)的根目录下。
<Sysname> tftp 10.10.110.1 get newest.ipe
Press CTRL+C to abort.
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 30.6M 0 30.6M 0 0 143k 0 --:--:-- 0:03:38 --:--:-- 142k
用户可以根据所要升级的软件类型,下载正确的待升级启动软件包,然后选择执行对应的升级操作。
· 升级启动软件包
· 升级BootRom
# 指定Master的主用下次启动软件包为newest.ipe。
<Sysname> boot-loader file flash:/newest.ipe slot 1 main
Verifying image file..........Done.
Images in IPE:
boot.bin
system.bin
This command will set the main startup software images. Continue? [Y/N]:y
Add images to target slot.
Decompressing file boot.bin to flash:/boot.bin....................Done.
Decompressing file system.bin to flash:/system.bin................Done.
The images that have passed all examinations will be used as the main startup so
ftware images at the next reboot on slot 1.
# 逐一指定各Standby均采用与Master相同的主用下次启动软件包(指定完成后,系统会自动将该启动软件包从Master上copy到Standby的存储介质根目录下)。
<Sysname> boot-loader file flash:/newest.ipe slot 2 main
Verifying image file..........Done.
Images in IPE:
boot.bin
system.bin
This command will set the main startup software images. Continue? [Y/N]:y
Add images to target slot.
Decompressing file boot.bin to flash:/boot.bin....................Done.
Decompressing file system.bin to flash:/system.bin................Done.
The images that have passed all examinations will be used as the main startup so
ftware images at the next reboot on slot 2.
# 在系统视图下,执行irf auto-update enable命令使能IRF系统启动软件包的自动加载功能。
<Sysname> system-view
[Sysname] irf auto-update enable
[Sysname] quit
开启IRF系统启动软件包的自动加载功能,后面执行reboot命令重启IRF时,若某个Standby检测到主用下次启动软件包与Master上的主用下次启动软件包不一致时:
· 该Standby自动将Master的当前主用启动软件包copy到自己的存储介质根目录下,并将该软件包设置为自己的下次主用启动软件包;同时使用该启动软件包重启。
· IRF系统启动软件包的自动加载功能主要用于新加入IRF的成员设备的软件版本与Master的软件版本不一致时,新的成员设备自动从Master设备下载启动软件包,并使用新的启动软件包重启,重新加入IRF。
#升级Master的BootRom。
<Sysname> bootrom update file flash:/update.btm slot 1
This command will update the Boot ROM file on the specified board(s), Continue? [Y/N]:y
Now updating the Boot ROM, please wait............................Done.
# 逐一升级各Standby的BootRom(指定完成后,系统会自动将该BootRom文件从Master上copy到Standby的存储介质根目录下)。
<Sysname> bootrom update file flash:/update.btm slot 2
This command will update the Boot ROM file on the specified board(s), Continue? [Y/N]:y
Now updating the Boot ROM, please wait............................Done.
[Sysname] quit
参考一下案例,第10项,技术支持部分:
http://www.h3c.com/cn/d_202010/1350874_30005_40.htm#_Toc53494846
(0)
V7交换机软件版本升级方法(命令行版)
目录
本案例适用于如S3100V3-SI系列、S3100V3-EI系列、S5120V2-LI系列、S5120V2-SI系列、S5120V2-SI系列、S5130-WiNet系列、S5130S-SI系列、S5130S-LI系列、S5130S-HI系列、S5130S-EI系列、S5130-HI系列、S5130-EI系列、S5500V2-WiNet系列、S5500V2-SI系列等的V7交换机,V5、V7交换机具体分类及型号可以参考“1.1 Comware V5、V7平台交换机分类说明”。
本案例分别介绍通过命令行以及bootware升级交换机版本的具体操作步骤。当设备可以正常启动,进入命令行时,可以通过命令行方式升级。如若设备版本丢失或者版本损坏导致无法正常启动,则可以通过bootware菜单升级。
电脑使用网线和console线连接交换机。
#华三官网下载所需要的升级版本,本案例以S5130-EI为例。如若是其他型号,根据具体的型号下载对应版本。
点击同意,下载即可。
#将下载的压缩包解压成文件夹,能够看到两个文件,我们需要使用的是ipe后缀的文件。
#在3CDaemon利用TFTP上传所要升级的版本文件夹
上传、下载目录选择文件夹S5130EI_E-CMW710-R3208P10
#启动交换机,查看初始版本
<H3C>dis version
H3C Comware Software, Version 7.1.070, Release 3208P08
Copyright (c) 2004-2018 New H3C Technologies Co., Ltd. All rights reserved.
H3C S5130-28S-PWR-EI uptime is 1 week, 3 days, 18 hours, 36 minutes
Last reboot reason : User reboot
#配置PC和交换机地址,保证PC和交换机之间可以互通
PC地址:192.168.10.1
交换机地址:192.168.10.2
#在SecureCRT 中输入命令:
<H3C>tftp 192.168.10.1 get S5130EI_E-CMW710-R3208P10.ipe
<H3C>boot-loader file flash:/S5130EI_E-CMW710-R3208P10.ipe slot all main
This command will set the boot file of the specified board. Continue? [Y/N]:y
The specified file will be used as the main boot file at the next reboot on slot 1!
#重启交换机
<H3C>reboot
Start to check configuration with next startup configuration file, please wait.........DONE!
This command will reboot the device. Continue? [Y/N]:y
Updating Basic BootRom......
Updating extended BootRom......
BootRom file updating finished
#查看实验结果,升级完毕
<H3C>dis version
H3C Comware Software, Version 7.1.070, Release 3208P10
Copyright (c) 2004-2018 New H3C Technologies Co., Ltd. All rights reserved.
H3C S5130-28S-PWR-EI uptime is 1 week, 3 days, 18 hours, 36 minutes
Last reboot reason : User reboot
3.2 通过Bootware菜单升级
#华三官网下载所需要的升级版本,本案例以S5130-EI为例。如若是其他型号,根据具体的型号下载对应版本。
点击同意,下载即可。
#将下载的压缩包解压成文件夹,能够看到两个文件,我们需要使用的是ipe后缀的文件。
#在3CDaemon利用TFTP上传所要升级的版本文件夹
上传、下载目录选择文件夹S5130EI_E-CMW710-R3208P10
#断电重启交换机,当出现Press Ctrl-B to enter Extended Boot menu...3时,迅速按Ctrl+B(也可以开机启动的时候一直按着ctrl+B),进入bootware菜单后,提示输入密码。密码默认为空,直接回车即可,然后显示如下界面:
#输入1,回车
#输入1,回车
Load File Name :S5130EI_E-CMW710-R3208P10.ipe
Server IP Address :192.168.10.1
Local IP Address :192.168.10.2
Subnet Mask :255.255.255.0
Gateway IP Address :0.0.0.0
#打开3CDaemon,可以看到数据正在传输,当显示如下界面时,数据传输完毕
#当命令行界面出现Please input the file attribute (Main/Backup/None)时,输入main,回车
#输入0,重启交换机。查看结果,升级完毕
<H3C>dis version
H3C Comware Software, Version 7.1.070, Release 3208P10
Copyright (c) 2004-2018 New H3C Technologies Co., Ltd. All rights reserved.
H3C S5130-28S-PWR-EI uptime is 0 week, 0 days, 0 hours, 5 minutes
Last reboot reason : User reboot
(0)
暂无评论
您好,请知:
使用WEB界面升级会方便很多。
以下是配置案例,请参考:
本案例为S5820 V7版本交换机软件版本的升级方法(WEB版)
S5820版本信息如下:
H3C Comware Software, Version 7.1.045, Release 2418P06
Copyright (c) 2004-2015 Hangzhou H3C Tech. Co., Ltd. All rights reserved.
H3C S5820V2-48S uptime is 233 weeks, 5 days, 23 hours, 47 minutes
Last reboot reason : USER reboot
Boot image: flash:/s5820v2_5830v2-cmw710-boot-r2418p06.bin
Boot image version: 7.1.045, Release 2418P06
Compiled Aug 07 2015 15:40:53
System image: flash:/s5820v2_5830v2-cmw710-system-r2418p06.bin
System image version: 7.1.045, Release 2418P06
Compiled Aug 07 2015 15:40:53
登陆网页版
选择“设备”
选择“软件更新”
选择“升级系统软件”
选择文件,可选择是否要“立即重启设备”。点击“确定”
1、提前准备好新的软件版本文件。
2、提前部署好交换机WEB功能,并创建相应用户及赋予权限,可参考如下配置:
开启WEB功能:
[H3C]ip http enable
[H3C]ip https enable
创建用户,设置密码,赋予WEB登录方式及管理员操作权限
[H3C]local-user admin
[H3C-luser-manage-admin]password simple admin
[H3C-luser-manage-admin]service-type http https
[H3C-luser-manage-admin]authorization-attribute user-role network-admin
[H3C-luser-manage-admin]quit
3、确保PC能PING通交换机。
(0)
暂无评论
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
暂无评论