Skip to content

Latest commit

 

History

History
149 lines (117 loc) · 5.41 KB

ansible.netcommon.cli_backup_module.rst

File metadata and controls

149 lines (117 loc) · 5.41 KB

ansible.netcommon.cli_backup

Back up device configuration from network devices over network_cli

Version added: 4.2.0

  • This module provides platform agnostic way of backing up text based configuration from network devices over network_cli connection plugin.
Parameter Choices/Defaults Comments
defaults
boolean
    Choices:
  • no ←
  • yes
The defaults argument will influence how the running-config is collected from the device. When the value is set to true, the command used to collect the running-config is append with the all keyword. When the value is set to false, the command is issued without the all keyword.
dir_path
path
This option provides the path ending with directory name in which the backup configuration file will be stored. If the directory does not exist it will be first created and the filename is either the value of filename or default filename as described in filename options description. If the path value is not given in that case a backup directory will be created in the current working directory and backup configuration will be copied in filename within backup directory.
filename
string
The filename to be used to store the backup configuration. If the filename is not given it will be generated based on the hostname, current time and date in format defined by <hostname>_config.<current-date>@<current-time>

Note

- name: configurable backup path
  ansible.netcommon.cli_backup:
    filename: backup.cfg
    dir_path: /home/user

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
backup_path
string
always
The full path to the backup file

Sample:
/playbooks/ansible/backup/hostname_config.2016-07-16@22:28:34


Authors

  • Katherine Case (@Qalthos)