Welcome to the VanDyke Software Forums

Join the discussion today!


Go Back   VanDyke Software Forums > Scripting

Notices

Closed Thread
 
Thread Tools Rate Thread Display Modes
  #1  
Old 02-05-2016, 03:13 PM
jdev's Avatar
jdev jdev is offline
VanDyke Technical Support
 
Join Date: Nov 2003
Location: Albuquerque, NM
Posts: 1,099
Example: Cisco Save Config to File

Updated 07 Sep, 2021

Ever wanted to quickly save a copy of your Cisco router's running-config or startup-config to a file on your local machine so that you could have something to compare against or restore to? If so, this script is an example you can start with.

Download the script

Comments within the script file itself provide explanation of how to set it up and what to expect, but if you're looking for a quick way to get started with this example:
  1. Save the script to your local file system.

  2. Map buttons using SecureCRT's button bar to run the script in two different ways.
    1. Map a new button in SecureCRT's button bar with function set to Run Script, pointing to this script.
      Specify "running" as the argument to save a running-config

      Here's another example showing additional arguments passed to the script:


    2. Map another button in the same way.
      Specify "startup" as the argument to save a startup-config


On Windows, when you press the button you've mapped and the script completes, the saved file will be selected in a Windows Explorer file view.
For example:


Note: The example is written in Python code so as to be able to run in SecureCRT on Windows, Linux, or Mac OS X platforms.

Note: The same script will save either the running-config or the startup-config, depending on argument you supply when configuring the script to be launched.

Note: The default behavior is to store resulting config files in your "Documents" folder, in a sub-folder named "Config-Saves".


Download the script


Options Supported:
  • /asa-uses-more:true|false
    If present and set to true, the more:system:running-config command is used instead of show running-config.
    Default: False. The script uses the show running-config command by default if the main argument is "running".

  • /auto-close-app:true|false
    If present and set to true, the SecureCRT application will be closed automatically when the script terminates.
    Default: True if script is running unattended (in other words, the script is not running interactively). False by default if the script is running interactively.

  • /confirm-filename:true|false
    If present and set to false, then (when the script is running interactively), the end user is not prompted to confirm the file name when saving the specified config to the local file system. This option has no meaning when /interactive:true is present as an argument.
    Default: True, when script is running interactively. False or ignored otherwise.

  • /interactive:true|false
    If present and set to false, the script runs in unattended mode; no user prompts will appear.
    Default: True. The script runs in interactive mode by default.

  • /use-sessmgr-tree:true|false
    If present and set to false, resulting config files are saved in a single, flat destination folder regardless of where the connected session lives within the Session Manager tree.
    Default: True. Resulting config files are stored in a folder structure modeled after the Session Manager folder hierarchy.

Download the script

Examples Uses of Arguments:
Save the startup-config to a file, prompting for filename using default template values. SecureCRT continues running after the script completes.
startup

Save the running-config to a file, prompting for filename using default template values. SecureCRT continues running after the script completes.
running

Save the running configuration for just Vlan 1; run unattended, but leave SecureCRT running when the script terminates:
running int Vlan 1 /interactive:true /auto-close:false

Save the more verbose version of a running config (running all); run interactively, but don't prompt for file name to save:
running all /interactive:true /confirm-filename:false

Save the startup-config to a file, but don't prompt for filename -- just save it to the templated name the script provides. SecureCRT continues running after the script completes:
startup /confirm-filename:false

Save the running config; runs unattended and SecureCRT closes automatically when the script completes:
running /interactive:false

Save the running config using the more:system:running-config command; runs unattended but does not close SecureCRT automatically when the script completes:
running /interactive:false /asa-uses-more:true /auto-close-app:false

Save complete (including default values) running config (running all). Runs "interactively" but does not prompt for filename (uses default template-based time stamped file name).
running all /interactive:yes /confirm-filename:no /auto-close-app:no /asa-uses-more:no

Same as above, but resulting config files are all stored in the same flat destination folder.
running all /interactive:yes /confirm-filename:no /auto-close-app:no /use-sessmgr-tree:false /asa-uses-more:no

Save the startup config with line numbered mode activated. Interactive (so that, on Windows, the File Explorer will open with the resulting file selected), but automated file name used. Session Manager folder structure is used for determining a mirrored folder in which to store saved config files.
startup linenum /interactive:yes /confirm-filename:no /auto-close-app:no

Same as above, but with a flat folder housing all saved configs rather than mirroring the Session Manager tree.
startup linenum /interactive:yes /confirm-filename:no /auto-close-app:no /use-sessmgr-tree:false

--Jake


Download the script


History:
Update (jdev: 07 Sep, 2021): Update to use comparison operator construct that will work in either python 3 or python 2 -- e.g.: if x <> y, which works in python 2 but not in python 3, versus if not x == y, which works in python 2 and python 3.
Update (jdev: 20 Aug, 2020): Added /asa-uses-more command line arg (defaults to false). Added debug logging (on by default). Addressed error with global variable that would sometimes occur with prior version. Added /use-sessmgr-tree command line arg.
Update (jdev: 05 Jun, 2020): Merged two example scripts into a single script. This updated version supports Nexus/Catalyst devices, and provides for unattended operation as well as other options as documented above. Note: the Unattended version is no longer being updated.
Update (jdev: 14 Sep, 2017): Added variant of the example script to be useful for unattended backups. See example "Cisco-SaveDeviceConfigToFile-Unattended(NoLongerReceivingUpdates).py.txt"
Update (jdev: 06 Apr, 2018): Updated script to allow for additional argument(s) to 'sh run' to be specified in the button bar configuration. Note: These changes were not made to the 'Unattended' script example.
Update (jdev: 27 Jun, 2017): Use 'more system:running-config' form of the command instead of 'show running-config' for ASA devices so that the resulting output isn't masked (thanks to mike1572 in forum thread 12738 for the tip.).
Update (jdev: 07 Sep, 2016): Updated script to account for other shell/environment differences on ASA devices (use 'term pager 0', and other minor mods). Script now verified working on a Cisco 881W, a 2900 router, a 2960 switch, and an ASA5510 (thanks to forum user mike1572 for assistance).
Update (jdev: 29 Aug, 2016): Updated script to account for shell prompts from ASA devices that have trailing spaces; also account for 'sh term' output that might be longer than one page of data (handle the --more-- prompts if they occur in this scenario).
Update (jdev: 11 Apr, 2016):Updated script to allow/detect hostnames that have digits and dots in them.
__________________
Jake Devenport
VanDyke Software
Technical Support
YouTube Channel: https://www.youtube.com/vandykesoftware
Email: support@vandyke.com
Web: https://www.vandyke.com/support

Last edited by jdev; 09-07-2021 at 02:08 PM. Reason: Updated example to allow for additional arguments (sh run all)
Closed Thread

Tags
example script

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -6. The time now is 07:19 PM.