Network Management

 View Only
last person joined: 17 hours ago 

Keep an informative eye on your network with HPE Aruba Networking network management solutions
Expand all | Collapse all

IMC - Script Exist Error

This thread has been viewed 25 times
  • 1.  IMC - Script Exist Error

    Posted Sep 11, 2023 03:50 AM

    Hi All, i am getting this error more and more now. I have upgraded to latest software version for IMC and when trying to roll out new sofware to any of my switches i get "Script Exist Error"

    Is there someone who can point me in the right direction to resolve this please.

    The server's host key is not cached in the registry. You
    have no guarantee that the server is the computer you
    think it is.
    The server's rsa2 key fingerprint is:
    ssh-rsa 2048 05:91:ad:81:b5:61:74:96:67:b2:63:67:b1:c4:37:f6
    If you trust this host, enter "y" to add the key to
    PuTTY's cache and carry on connecting.
    If you want to carry on connecting just once, without
    adding the key to the cache, enter "n".
    If you do not trust this host, press Return to abandon the
    connection.
    Store key in cache? (y/n) adminblah@10.17.151.1's password:
    HP J8692A Switch E3500yl-24G
    Software revision K.15.08.0013
    
    Copyright (C) 1991-2012 Hewlett-Packard Development Company, L.P.
    RESTRICTED RIGHTS LEGEND
    Confidential computer software. Valid license from HP required for possession,
    use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer
    Software, Computer Software Documentation, and Technical Data for Commercial
    Items are licensed to the U.S. Government under vendor's standard commercial
    license.
    HEWLETT-PACKARD DEVELOPMENT COMPANY, L.P.
    20555 State Highway 249, Houston, TX 77070
    
    Press any key to continue
    Switch-01#
    Switch-01# enable
    Invalid input: enable
    Switch-01# no page
    Switch-01# terminal width 1920
    
    Switch-01# copy tftp flash 10.112.40.240 10.17.151.1_K_16_02_0036.swi primary allow-no-signature
    Invalid input: allow-no-signature
    Switch-01# copy tftp flash 10.112.40.240 10.17.151.1_K_16_02_0036.swi primary
    The Primary OS Image will be deleted, continue [y/n]? y
    Error in sending rq message. Exceeded 5 retransmits.
    00000K
    00000K Peer unreachable.
    Switch-01#

    Thank you 

    Paul



  • 2.  RE: IMC - Script Exist Error

    EMPLOYEE
    Posted Sep 27, 2023 11:29 AM

    Hi Paul, the parameter allow-no-signature can be found in all the deploy image scripts listed in the  below picture. To remove it, back up the files, edit them and remove the parameter.

    The location of the scripts is: $IMC/server/conf/adapters/ICC/Hewlett Packard/...



    ------------------------------
    Kind Regards
    Paola
    ------------------------------



  • 3.  RE: IMC - Script Exist Error

    Posted 15 days ago

    I appreciate it has been some time since posting this but we has to put the upgrades on hold for a bit and upgrade manually due to this error. 

    Please can you advise on how to remove "allow-no-signature" from the code so it still works ok. I am no coding expert so appreciate this.

    Paul




  • 4.  RE: IMC - Script Exist Error
    Best Answer

    EMPLOYEE
    Posted 15 days ago

    Hi Paul,

    sorry for the delay for this fix. The next IMC release will include this but it will be some time before it's released.

    You can obtain a patch from support for this problem, alternatively you can edit all the files  yourself and remove the unsupported parameter from  the deploy_image scripts. 

    Back up the files below $IMC\server\adapter\Hewlett Packard\*****\deploy_image.tcl to the desktop

    Edit each file with notepad. Delete the string 'allow-no-signature'

    from:

            send "copy tftp flash $TFTPServer $TFTPFile primary allow-no-signature\r"
      to

           send "copy tftp flash $TFTPServer $TFTPFile primary\r"

    and from:
           send "copy tftp flash $TFTPServer $TFTPFile secondary allow-no-signature\r"

    to:    

           send "copy tftp flash $TFTPServer $TFTPFile secondary\r"



    ------------------------------
    Kind Regards
    Paola
    ------------------------------



  • 5.  RE: IMC - Script Exist Error

    Posted 15 days ago

    Thank you !