April 2020
Intermediate to advanced
482 pages
15h 16m
English
The napalm_install_config module provides extra options to control how to manage the configuration on the remote devices, such as the configuration diff. With this option, we can collect the differences between the running configuration on the device and the configuration that we will push via NAPALM. This option can be enabled as follows:
$ cat group_vars/all.yml< -- Output Omitted for brevity -->config_diff_dir: ./config_diff$ cat tasks/build_config_dir.yml- name: "Create Config Diff Directory" file: path={{config_diff_dir}} state=directory run_once: yes
Read now
Unlock full access