Copy a file from Ansible Controller to a network device
Version added: 1.0.0
- This module provides functionality to copy file from Ansible controller to network devices.
The below requirements are needed on the host that executes this module.
- scp if using protocol=scp with paramiko
Note
- Some devices need specific configurations to be enabled before scp can work These configuration should be pre-configured before using this module e.g ios -
ip scp server enable
. - User privilege to do scp on network device should be pre-configured e.g. ios - need user privilege 15 by default for allowing scp.
- Default destination of source file.
- This module is supported on
ansible_network_os
network platforms. See the :ref:`Network Platform Options <platform_options>` for details.
- name: copy file from ansible controller to a network device
ansible.netcommon.net_put:
src: running_cfg_ios1.txt
- name: copy file at root dir of flash in slot 3 of sw1(ios)
ansible.netcommon.net_put:
src: running_cfg_sw1.txt
protocol: sftp
dest: flash3:/running_cfg_sw1.txt
- Deepak Agrawal (@dagrawal)