2016-10-28 18:50:29 +00:00
|
|
|
---
|
|
|
|
- debug: msg="START netconf/changeport.yaml"
|
|
|
|
|
|
|
|
|
|
|
|
- name: Setup
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
|
|
|
###################################
|
|
|
|
- name: Change port
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
2017-11-14 09:41:44 +00:00
|
|
|
netconf_port: 8022
|
2016-10-28 18:50:29 +00:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: idempotent tests
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
2017-11-14 09:41:44 +00:00
|
|
|
netconf_port: 8022
|
2016-10-28 18:50:29 +00:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
2017-12-14 08:18:09 +00:00
|
|
|
- name: wait for netconf server to come up
|
|
|
|
pause:
|
|
|
|
seconds: 10
|
|
|
|
|
2017-11-14 09:41:44 +00:00
|
|
|
- name: Ensure we can communicate over 8022
|
2017-03-12 16:45:00 +00:00
|
|
|
junos_command:
|
2017-08-04 19:17:32 +00:00
|
|
|
rpcs:
|
|
|
|
- get-software-information
|
2016-10-28 18:50:29 +00:00
|
|
|
provider: "{{ netconf }}"
|
2017-11-14 09:41:44 +00:00
|
|
|
port: 8022
|
2016-10-28 18:50:29 +00:00
|
|
|
|
2017-11-19 06:22:04 +00:00
|
|
|
- name: wait for persistent socket to timeout
|
|
|
|
pause:
|
|
|
|
seconds: 120
|
|
|
|
|
2016-10-28 18:50:29 +00:00
|
|
|
# This protects against the port override above not being honoured and a bug setting the port
|
|
|
|
- name: Ensure we can NOT communicate over default port
|
2017-03-12 16:45:00 +00:00
|
|
|
junos_command:
|
|
|
|
rpcs: get-software-information
|
2016-10-28 18:50:29 +00:00
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.failed == true"
|
|
|
|
|
|
|
|
- name: Set back netconf to default port
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
2017-11-19 06:22:04 +00:00
|
|
|
- name: wait for persistent socket to timeout
|
|
|
|
pause:
|
|
|
|
seconds: 120
|
|
|
|
|
2016-10-28 18:50:29 +00:00
|
|
|
- name: Ensure we can communicate over netconf
|
2017-03-12 16:45:00 +00:00
|
|
|
junos_command:
|
2017-08-04 19:17:32 +00:00
|
|
|
rpcs:
|
|
|
|
- get-software-information
|
2016-10-28 18:50:29 +00:00
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- debug: msg="END netconf/changeport.yaml"
|