2017-06-14 14:23:52 +05:30
|
|
|
---
|
2018-01-08 17:58:47 +05:30
|
|
|
- debug: msg="START junos_vlan netconf/basic.yaml on connection={{ ansible_connection }}"
|
2017-06-14 14:23:52 +05:30
|
|
|
|
|
|
|
- name: setup - remove vlan
|
|
|
|
junos_vlan:
|
|
|
|
name: test-vlan
|
|
|
|
description: test vlan
|
|
|
|
state: absent
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- name: Create vlan
|
|
|
|
junos_vlan:
|
|
|
|
vlan_id: 100
|
|
|
|
name: test-vlan
|
|
|
|
state: present
|
|
|
|
description: test vlan
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
2017-06-29 10:18:35 +05:30
|
|
|
- name: Get running configuration
|
|
|
|
junos_rpc:
|
|
|
|
rpc: get-configuration
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: config
|
2017-06-14 14:23:52 +05:30
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-06-29 10:18:35 +05:30
|
|
|
- "'<name>test-vlan</name>' in config.xml"
|
|
|
|
- "'<vlan-id>100</vlan-id>' in config.xml"
|
2017-06-14 14:23:52 +05:30
|
|
|
|
|
|
|
- name: Create vlan again (idempotent)
|
|
|
|
junos_vlan:
|
|
|
|
vlan_id: 100
|
|
|
|
name: test-vlan
|
|
|
|
state: present
|
|
|
|
description: test vlan
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: Deactivate vlan
|
|
|
|
junos_vlan:
|
|
|
|
vlan_id: 100
|
|
|
|
name: test-vlan
|
2017-06-29 10:18:35 +05:30
|
|
|
state: present
|
|
|
|
active: False
|
2017-06-14 14:23:52 +05:30
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
2017-06-29 10:18:35 +05:30
|
|
|
- name: Get running configuration
|
|
|
|
junos_rpc:
|
|
|
|
rpc: get-configuration
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: config
|
|
|
|
|
2017-06-14 14:23:52 +05:30
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-06-29 10:18:35 +05:30
|
|
|
- "'<vlan inactive=\"inactive\">' in config.xml"
|
|
|
|
- "'<name>test-vlan</name>' in config.xml"
|
2017-06-14 14:23:52 +05:30
|
|
|
|
|
|
|
- name: Activate vlan
|
|
|
|
junos_vlan:
|
|
|
|
vlan_id: 100
|
|
|
|
name: test-vlan
|
2017-06-29 10:18:35 +05:30
|
|
|
state: present
|
|
|
|
active: True
|
2017-06-14 14:23:52 +05:30
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
2017-06-29 10:18:35 +05:30
|
|
|
- name: Get running configuration
|
|
|
|
junos_rpc:
|
|
|
|
rpc: get-configuration
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: config
|
|
|
|
|
2017-06-14 14:23:52 +05:30
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-06-29 10:18:35 +05:30
|
|
|
- "'<name>test-vlan</name>' in config.xml"
|
2017-06-14 14:23:52 +05:30
|
|
|
|
|
|
|
- name: Delete vlan
|
|
|
|
junos_vlan:
|
|
|
|
vlan_id: 100
|
|
|
|
name: test-vlan
|
|
|
|
state: absent
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
2017-06-29 10:18:35 +05:30
|
|
|
- name: Get running configuration
|
|
|
|
junos_rpc:
|
|
|
|
rpc: get-configuration
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: config
|
|
|
|
|
2017-06-14 14:23:52 +05:30
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-06-29 10:18:35 +05:30
|
|
|
- "'<name>test-vlan</name>' not in config.xml"
|
2017-08-04 14:55:58 +05:30
|
|
|
|
|
|
|
- name: Setup vlan configuration for aggregate
|
|
|
|
junos_vlan:
|
|
|
|
aggregate:
|
2017-08-14 10:17:03 +05:30
|
|
|
- vlan_id: 159
|
|
|
|
name: test_vlan_1
|
|
|
|
- vlan_id: 160
|
|
|
|
name: test_vlan_2
|
|
|
|
state: absent
|
2017-08-04 14:55:58 +05:30
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- name: Create vlan configuration using aggregate
|
|
|
|
junos_vlan:
|
|
|
|
aggregate:
|
2017-08-24 21:03:04 -04:00
|
|
|
- { vlan_id: 159, name: test_vlan_1 }
|
|
|
|
- { vlan_id: 161, name: test_vlan_2 }
|
|
|
|
description: test vlan
|
2017-08-04 14:55:58 +05:30
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-11-27 16:58:08 -06:00
|
|
|
- result.diff.prepared is search("\+ *test_vlan_1")
|
|
|
|
- result.diff.prepared is search("\+ *vlan-id 159")
|
|
|
|
- result.diff.prepared is search("\+ *vlan-id 161")
|
|
|
|
- result.diff.prepared is search("\+ *description \"test vlan\"")
|
2017-08-04 14:55:58 +05:30
|
|
|
|
|
|
|
- name: Deactivate vlan configuration using aggregate
|
|
|
|
junos_vlan:
|
|
|
|
aggregate:
|
2017-08-14 10:17:03 +05:30
|
|
|
- { vlan_id: 159, name: test_vlan_1, description: test vlan-1 }
|
2017-08-15 18:41:53 +05:30
|
|
|
- name: test_vlan_2
|
2017-08-14 10:17:03 +05:30
|
|
|
active: False
|
2017-08-04 14:55:58 +05:30
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-11-27 16:58:08 -06:00
|
|
|
- result.diff.prepared is search("! *inactive[:] test_vlan_1")
|
|
|
|
- result.diff.prepared is search("! *inactive[:] test_vlan_2")
|
2017-08-04 14:55:58 +05:30
|
|
|
|
|
|
|
- name: activate vlan configuration using aggregate
|
|
|
|
junos_vlan:
|
|
|
|
aggregate:
|
2017-08-14 10:17:03 +05:30
|
|
|
- { vlan_id: 159, name: test_vlan_1, description: test vlan-1 }
|
2017-08-15 18:41:53 +05:30
|
|
|
- name: test_vlan_2
|
2017-08-14 10:17:03 +05:30
|
|
|
active: True
|
2017-08-04 14:55:58 +05:30
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-11-27 16:58:08 -06:00
|
|
|
- result.diff.prepared is search("! *active[:] test_vlan_1")
|
|
|
|
- result.diff.prepared is search("! *active[:] test_vlan_2")
|
2017-08-04 14:55:58 +05:30
|
|
|
|
|
|
|
- name: Delete vlan configuration using aggregate
|
|
|
|
junos_vlan:
|
|
|
|
aggregate:
|
2017-08-14 10:17:03 +05:30
|
|
|
- vlan_id: 159
|
|
|
|
name: test_vlan_1
|
2017-08-15 18:41:53 +05:30
|
|
|
- name: test_vlan_2
|
2017-08-14 10:17:03 +05:30
|
|
|
state: absent
|
2017-08-04 14:55:58 +05:30
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-11-27 16:58:08 -06:00
|
|
|
- result.diff.prepared is search("\- *test_vlan_1")
|
|
|
|
- result.diff.prepared is search("\- *vlan-id 159")
|
|
|
|
- result.diff.prepared is search("\- *test_vlan_2")
|
2017-08-04 14:55:58 +05:30
|
|
|
|
|
|
|
- name: Delete vlan configuration using aggregate (idempotent)
|
|
|
|
junos_vlan:
|
|
|
|
aggregate:
|
2017-08-15 18:41:53 +05:30
|
|
|
- { vlan_id: 159, name: test_vlan_1 }
|
|
|
|
- name: test_vlan_2
|
|
|
|
state: absent
|
2017-08-04 14:55:58 +05:30
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|
2018-01-08 17:58:47 +05:30
|
|
|
|
|
|
|
- debug: msg="END junos_vlan netconf/basic.yaml on connection={{ ansible_connection }}"
|