community.general.ce_mlag_config (0.1.1) — module

Manages MLAG configuration on HUAWEI CloudEngine switches.

Authors: Li Yanfeng (@QijunPan)

preview | supported by community

Install collection

Install with ansible-galaxy collection install community.general:==0.1.1


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.1.1

Description

Manages MLAG configuration on HUAWEI CloudEngine switches.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: mlag config module 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: Create DFS Group id
    ce_mlag_config:
      dfs_group_id: 1
      provider: "{{ cli }}"
  - name: Set dfs-group priority
    ce_mlag_config:
      dfs_group_id: 1
      priority_id: 3
      state: present
      provider: "{{ cli }}"
  - name: Set pseudo nickname
    ce_mlag_config:
      dfs_group_id: 1
      pseudo_nickname: 3
      pseudo_priority: 130
      state: present
      provider: "{{ cli }}"
  - name: Set ip
    ce_mlag_config:
      dfs_group_id: 1
      ip_address: 11.1.1.2
      vpn_instance_name: 6
      provider: "{{ cli }}"
  - name: Set peer link
    ce_mlag_config:
      eth_trunk_id: 3
      peer_link_id: 2
      state: present
      provider: "{{ cli }}"

Inputs

    
state:
    choices:
    - present
    - absent
    default: present
    description:
    - Specify desired state of the resource.

nickname:
    description:
    - The nickname bound to a DFS group. The value is an integer that ranges from 1 to
      65471.

ip_address:
    description:
    - IP address bound to the DFS group. The value is in dotted decimal notation.

priority_id:
    description:
    - Priority of a DFS group. The value is an integer that ranges from 1 to 254. The
      default value is 100.

dfs_group_id:
    default: present
    description:
    - ID of a DFS group. The value is 1.

eth_trunk_id:
    description:
    - Name of the peer-link interface. The value is in the range from 0 to 511.

peer_link_id:
    description:
    - Number of the peer-link interface. The value is 1.

pseudo_nickname:
    description:
    - A pseudo nickname of a DFS group. The value is an integer that ranges from 1 to
      65471.

pseudo_priority:
    description:
    - The priority of a pseudo nickname. The value is an integer that ranges from 128
      to 255. The default value is 192. A larger value indicates a higher priority.

vpn_instance_name:
    description:
    - Name of the VPN instance bound to the DFS group. The value is a string of 1 to 31
      case-sensitive characters without spaces. If the character string is quoted by double
      quotation marks, the character string can contain spaces. The value _public_ is
      reserved and cannot be used as the VPN instance name.

Outputs

changed:
  description: check to see if a change was made on the device
  returned: always
  sample: true
  type: bool
end_state:
  description: k/v pairs of aaa params after module execution
  returned: always
  sample:
    eth_trunk_id: Eth-Trunk3
    peer_link_id: '1'
  type: dict
existing:
  description: k/v pairs of existing aaa server
  returned: always
  sample: {}
  type: dict
proposed:
  description: k/v pairs of parameters passed into module
  returned: always
  sample:
    eth_trunk_id: '3'
    peer_link_id: '1'
    state: present
  type: dict
updates:
  description: command sent to the device
  returned: always
  sample:
    peer-link 1: null
  type: list