New in version 2.4.
parameter | required | default | choices | comments |
---|---|---|---|---|
enable | no |
| Set interface DLDP enable state. | |
interface | yes | Must be fully qualified interface name, i.e. GE1/0/1, 10GE1/0/1, 40GE1/0/22, 100GE1/0/1. | ||
local_mac | no | Set the source MAC address for DLDP packets sent in the DLDP-compatible mode. The value of MAC address is in H-H-H format. H contains 1 to 4 hexadecimal digits. | ||
mode_enable | no |
| Set DLDP compatible-mode enable state. | |
reset | no |
| Specify whether reseting interface DLDP state. | |
state | no | present |
| Manage the state of the resource. |
- name: DLDP interface test hosts: cloudengine connection: local gather_facts: no vars: cli: host: "{{ inventory_hostname }}" port: "{{ ansible_ssh_port }}" username: "{{ username }}" password: "{{ password }}" transport: cli tasks: - name: "Configure interface DLDP enable state and ensure global dldp enable is turned on" ce_dldp_interface: interface: 40GE2/0/1 enable: enable provider: "{{ cli }}" - name: "Configuire interface DLDP compatible-mode enable state and ensure interface DLDP state is already enabled" ce_dldp_interface: interface: 40GE2/0/1 enable: enable mode_enable: enable provider: "{{ cli }}" - name: "Configuire the source MAC address for DLDP packets sent in the DLDP-compatible mode and ensure interface DLDP state and compatible-mode enable state is already enabled" ce_dldp_interface: interface: 40GE2/0/1 enable: enable mode_enable: enable local_mac: aa-aa-aa provider: "{{ cli }}" - name: "Reset DLDP state of specified interface and ensure interface DLDP state is already enabled" ce_dldp_interface: interface: 40GE2/0/1 enable: enable reset: enable provider: "{{ cli }}" - name: "Unconfigure interface DLDP local mac addreess when C(state=absent)" ce_dldp_interface: interface: 40GE2/0/1 state: absent local_mac: aa-aa-aa provider: "{{ cli }}"
Common return values are documented here Return Values, the following are the fields unique to this module:
name | description | returned | type | sample |
---|---|---|---|---|
end_state | k/v pairs of interface DLDP configration after module execution | always | dict | {'interface': '40GE2/0/22', 'reset': 'enable', 'mode_enable': 'enable', 'enable': 'enable', 'local_mac': '00aa-00aa-00aa'} |
changed | check to see if a change was made on the device | always | boolean | True |
updates | command sent to the device | always | list | ['dldp enable', 'dldp compatible-mode enable', 'dldp compatible-mode local-mac aa-aa-aa', 'dldp reset'] |
proposed | k/v pairs of parameters passed into module | always | dict | {'interface': '40GE2/0/22', 'reset': 'enable', 'mode_enable': 'enable', 'enable': 'enalbe', 'local_mac': 'aa-aa-aa'} |
existing | k/v pairs of existing interface DLDP configration | always | dict | {'interface': '40GE2/0/22', 'reset': 'disable', 'mode_enable': None, 'enable': 'disable', 'local_mac': None} |
Note
state=present, enable=disable
, interface DLDP enable will be turned off and related interface DLDP confuration will be cleared.state=absent
, only local_mac is supported to configure.This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
For help in developing on modules, should you be so inclined, please read Community Information & Contributing, Testing Ansible and Developing Modules.
© 2012–2017 Michael DeHaan
© 2017 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/ce_dldp_interface_module.html