在下载模式下忽略 HP Procurve Action

网络工程 转变 交换 hp-procurve
2021-07-05 06:25:57

我正在尝试从 tftp 服务器导入配置以startup-config使用

copy tftp startup-config 10.0.0.10 5006zl.cnf

开关要求确认y/n,按下y它时只是中止,说无法加载配置。

show logging -r 显示

W 09/03/17 06:08:11 00158 update: AM1: line 0. Action is ignored in download
            mode.
I 09/03/17 06:08:10 00131 tftp: AM1: Transfer completed
W 09/03/17 06:05:45 00158 update: AM1: line 0. Action is ignored in download
            mode.
I 09/03/17 06:05:45 00131 tftp: AM1: Transfer completed
W 09/03/17 06:03:00 00158 update: AM1: line 0. Action is ignored in download

交换机的闪存信息: show flash

Image             Size (bytes) Date     Version 
----------------- ------------ -------- --------------
Primary Image    :    16575066 09/01/16 KB.15.18.0013        
Secondary Image  :    30307157 03/30/17 KB.16.02.0018       

Boot ROM Version 
----------------
Primary Boot ROM Version   : KB.16.01.0006
Secondary Boot ROM Version : KB.16.01.0006

Default Boot Image   : Secondary
Default Boot ROM     : Primary

在交换机上运行配置: show running-config

; J9850A Configuration Editor; Created on release #KB.16.02.0020
; Ver #10:08.01.81.b3.ff.7c.59.fc.7b.ff.ff.fc.ff.ff.3f.ef:5a
......
......

tftp服务器上的配置也是

; J9850A Configuration Editor; Created on release #KB.16.02.0020
; Ver #10:08.01.81.b3.ff.7c.59.fc.7b.ff.ff.fc.ff.ff.3f.ef:5a

我怀疑是的版本running-configshow flash不匹配。这是已知的吗?我怎么能解决这个问题?

更新 1

sed -n l 5006zl.cnf和或的输出cat -vEt 5006zl.cnf

; J9850A Configuration Editor; Created on release #KB.15.18.0013$
; Ver #0d:10.80.7c.00.f4.6b.ff.f7.fc.7f.ff.3f.ef:da$
hostname "r11-06-sw-11"$
module A type j9538a$
module B type j9538a$
module E type j9550a$
module F type j9538a$
fault-finder broadcast-storm sensitivity high$
fault-finder bad-driver sensitivity high$
fault-finder bad-transceiver sensitivity high$
fault-finder bad-cable sensitivity high$
fault-finder too-long-cable sensitivity high$
fault-finder over-bandwidth sensitivity high$
fault-finder loss-of-link sensitivity high$
fault-finder duplex-mismatch-hdx sensitivity high$
fault-finder duplex-mismatch-fdx sensitivity high$
fault-finder link-flap sensitivity high$
trunk E24 trk10 dt-lacp$
.....
.....
1个回答

顺便说一句,我偶然发现了对所描述问题的可能解释。您的怀疑很可能是正确的:交换机似乎确实使用实际运行的版本验证了配置中的固件版本。

使用该add-ignore-tag选项导出时,第一行更改为例如

; J9850A IGNORE Configuration Editor; Created on release #KB.15.18.0013$

如果您以相同的方式编辑要导入的配置,则无论固件版本如何,它都应该可以工作。