cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 

Config download script does not appear in Inventory Manager DropDown-Menu

Config download script does not appear in Inventory Manager DropDown-Menu

Marco_Lorenz
New Contributor II

I'm trying to figure out an issue with download Extreme XOS Deviceconfigs via NetSight InventoryManager. The Device I want to backup is a Summit X440-Device with XOS 15.3.1.4-patch1-41 running on it. NetSight always tells File not Found. While searching this error I found:


https://extremeportal.force.com/ExtrArticleDetail?an=000077044

Now I want to build a script with@receive 15 in it. No Problem with that, but after I have copied this script to .../NetSight_Instal_path/NetSight/appdata/InventoryMgr/properties/devicefiles I cannot see the script in the DropDown-Menu of InventoryManager. The whole Server has already been restarted.

Anyone an idea?

Here is the script which has been saved as .txt and .cfg without success...

-- Use these scripts to manage Extreme XOS devices
name="ExtremeXOSReceive15 - TFTP"
desc="Extreme SSH/TFTP Scripts using VR-Default interface"
protocol=TFTP
--
separator=UNIX_FILE_SEPARATOR
advanced_script_support=true
-- Recheck script output for success even if there was an error.
perform_success_test_always=true
--
-----BEGIN SCRIPT "Configuration Upload"-----
save configuration primary
Y

@receive 15
save configuration as-script nms
@key y
@key %0d
@RECEIVEUNTIL 30 ".*done!.*"
@receive 15
%EXTR_DYNAMIC_COMMANDS%
@receive 15
exit
-----END SCRIPT-----
-----BEGIN SUCCESS "Configuration Upload"-----
Uploading.*done!
-----END SUCCESS-----
-----BEGIN FAILURE MAPPINGS "Configuration Upload"-----
Error: timeout=The device was unable to contact the TFTP server. Check that the TFTP server is running and connectivity is okay.
Network is unreachable=The device was unable to download the configuration. Check that the correct VR is being used.
.*to switch... failed=Backup of the configuration failed. Verify that the TFTP server is running and connectivity is okay.
-----END FAILURE MAPPINGS-----
--
-----BEGIN SCRIPT "Configuration Download"-----
save configuration primary
Y
%EXTR_DYNAMIC_COMMANDS%
@receive 10
use configuration primary
reboot
y
exit
-----END SCRIPT-----
-----BEGIN SUCCESS "Configuration Download"-----
Downloading.*(to switch|on.*MSM|on.*MM).+ done!
The selected configuration will take effect after the next switch reboot.
-----END SUCCESS-----
-----BEGIN FAILURE MAPPINGS "Configuration Download"-----
Error: timeout=The device was unable to contact the TFTP server. Check that the TFTP server is running and connectivity is okay.
Network is unreachable=The device was unable to download the configuration. Check that the correct VR is being used.
Downloading.*to switch... failed=Restore of the configuration failed. Verify that the TFTP server is running and connectivity is okay.
-----END FAILURE MAPPINGS-----
--
-----BEGIN SCRIPT "Firmware Download"-----
%SET_IMAGE_PARTITION_BEFORE_INSTALL%

@# Remove any debug files from internal-memory before upgrade
rm internal-memory *
@key y
@key %0d
@receive 15

download image %TFTP_IP% %RELATIVE_TARGET_FILE_PATH% vr "%VR_VAR%"
@key y
@COMMANDDONE 30
@key %0d
@COMMANDDONE 2
%SET_IMAGE_PARTITION_AFTER_INSTALL%
exit
@# Answer to Save Configuration?
@key y
-----END SCRIPT-----
-----BEGIN SUCCESS "Firmware Download"-----
Image installed successfully
-----END SUCCESS-----
-----BEGIN FAILURE MAPPINGS "Firmware Download"-----
Downloading to Switchexit=The device was unable to contact the tftp server. Verify the TFTP server is running and connectivity is okay.
tftp: sendto: Network is unreachable=The device was unable to download the image. Check that the correct VR is being used.
tftp: server error: (2) cannot access file=The device cannot access the image file. Please check the permissions of the file.
is not an Extreme Networks image=The file selected to be downloaded to the device is NOT an Extreme Networks image. Please select an appropriate image file.
Error: File could not be unwrapped=The image file selected is corrupt and cannot be downloaded.
Error: File is not properly formatted=The image file selected is not properly formatted.
Error: Illegal filename=The image filename is illegal. Verify that the correct image file is being used.
Error: Failed to install image - version mismatch between XOS and xmod=The selected partition does not have the same firmware version as the .xmod image file.
Error: Failed to install image - Package exists, please uninstall existing package first=Package exists, please uninstall existing package first
active partitions must be the same across the stack=All devices in the stack must be using the same active partition. Correct and repeat firmware download.
-----END FAILURE MAPPINGS-----
--
-----BEGIN SCRIPT "BootPROM Download"-----
download bootrom %TFTP_IP% %RELATIVE_TARGET_FILE_PATH% vr "%VR_VAR%"
@key y
@COMMANDDONE 30
exit
-----END SCRIPT-----
-----BEGIN SUCCESS "BootPROM Download"-----
Bootrom installed successfully
-----END SUCCESS-----
-----BEGIN FAILURE MAPPINGS "BootPROM Download"-----
-----END FAILURE MAPPINGS-----
--
-----BEGIN SCRIPT "Reset"-----
reboot
y
-----END SCRIPT-----
-----BEGIN SCRIPT "Timed Reset"-----
disable clipaging
reboot time %TIMED_RESET_ABSOLUTE_TIME%
y
show switch
exit
-----END SCRIPT-----
-----BEGIN SUCCESS "Timed Reset"-----
^Next Reboot:(?!.*None scheduled)
-----END SUCCESS-----
-----BEGIN FAILURE MAPPINGS "Timed Reset"-----
Error: Scheduled reboot time is in the past=Scheduled reboot time must be in the future.
-----END FAILURE MAPPINGS-----
--
-----BEGIN SCRIPT "Timed Reset Abort"-----
disable clipaging
reboot cancel
show switch
exit
-----END SCRIPT-----
-----BEGIN SUCCESS "Timed Reset Abort"-----
Next Reboot:\s*None scheduled
-----END SUCCESS-----
-----BEGIN USER-DEFINED VARIABLES -----
VR_VAR.Default=VR-Default
PUT_FILE_CMD.Default=tftp %TFTP_IP% -v "%VR_VAR%" -p -l %LOCAL_FILE_NAME% -r %REMOTE_FILE_NAME%
GET_FILE_CMD.Default=tftp %TFTP_IP% -v "%VR_VAR%" -g -l %LOCAL_FILE_NAME% -r %REMOTE_FILE_NAME%
RESTORE_PRIMARY_CMD.Default=tftp get %TFTP_IP% vr "%VR_VAR%" %RELATIVE_TARGET_FILE_PATH% primary.cfg force-overwrite
-----END USER-DEFINED VARIABLES -----

10 REPLIES 10

Ty_Izzet
Extreme Employee
Hi Marco,

Please make sure you are able to change the desc line as well. When testing this locally, the script populated in the drop down menu once the second line was modified.

-- Use these scripts to manage Extreme XOS devices
name="ExtremeXOSReceive15 - TFTP"
desc=""ExtremeXOSReceive15 -- TFTP Extreme SSH/TFTP Scripts using VR-Default interface"
protocol=TFTP
--
separator=UNIX_FILE_SEPARATOR
advanced_script_support=true
-- Recheck script output for success even if there was an error.
perform_success_test_always=true
--
-----BEGIN SCRIPT "Configuration Upload"-----
save configuration primary
Y

@receive 15
save configuration as-script nms
@key y
@key %0d
.....

GTM-P2G8KFN