edgeos_config – Manage EdgeOS configuration on remote device¶
New in version 2.5.
Synopsis¶
- This module provides configuration file management of EdgeOS devices. It provides arguments for managing both the configuration file and state of the active configuration. All configuration statements are based on set and delete commands in the device configuration.
- This is a network module and requires the
connection: network_cli
in order to work properly. - For more information please see the Network Guide.
Parameters¶
Notes¶
Note
- Tested against EdgeOS 1.9.7
- Setting
ANSIBLE_PERSISTENT_COMMAND_TIMEOUT
to 30 is recommended since the save command can take longer than the default of 10 seconds on some EdgeOS hardware.
Examples¶
- name: configure the remote device
edgeos_config:
lines:
- set system host-name {{ inventory_hostname }}
- set service lldp
- delete service dhcp-server
- name: backup and load from file
edgeos_config:
src: edgeos.cfg
backup: yes
- name: configurable backup path
edgeos_config:
src: edgeos.cfg
backup: yes
backup_options:
filename: backup.cfg
dir_path: /home/user
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Nathaniel Case (@Qalthos)
- Sam Doran (@samdoran)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.