summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_lacp_interfaces/tests/netconf/_base_config.yaml
blob: 75f9612a298652cc24b87e0919c7be04b52e7952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- debug:
    msg: "Start junos_lacp_interfaces base config ansible_connection={{ ansible_connection }}"

- name: Configure base lag interface
  junos_config:
    lines:
      - set interfaces ae1 description "Configured by Ansible"
      - set interfaces ae2 description "Configured by Ansible"
      - set interfaces ge-0/0/1 ether-options 802.3ad ae1
      - set interfaces ge-0/0/2 ether-options 802.3ad ae1
      - set interfaces ge-0/0/3 ether-options 802.3ad ae2
      - set interfaces ge-0/0/4 ether-options 802.3ad ae2

- debug:
    msg: "End junos_lacp_interfaces base config ansible_connection={{ ansible_connection }}"