2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START netconf/changeport.yaml"
|
|
|
|
|
|
|
|
|
|
|
|
- name: Setup
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
|
|
|
|
###################################
|
|
|
|
- name: Change port
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
2017-08-04 16:00:00 +02:00
|
|
|
netconf_port: 22
|
2016-10-28 20:50:29 +02:00
|
|
|
provider: "{{ cli }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: idempotent tests
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
2017-08-04 16:00:00 +02:00
|
|
|
netconf_port: 22
|
2016-10-28 20:50:29 +02:00
|
|
|
provider: "{{ cli }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
2017-08-04 21:17:32 +02:00
|
|
|
- name: wait for persistent socket to timeout, this ensures new socket creation with connection type netconf
|
|
|
|
pause:
|
|
|
|
seconds: 30
|
|
|
|
|
2017-08-04 16:00:00 +02:00
|
|
|
- name: Ensure we can communicate over 22
|
2017-03-12 17:45:00 +01:00
|
|
|
junos_command:
|
2017-08-04 21:17:32 +02:00
|
|
|
rpcs:
|
|
|
|
- get-software-information
|
2016-10-28 20:50:29 +02:00
|
|
|
provider: "{{ netconf }}"
|
2017-08-04 16:00:00 +02:00
|
|
|
port: 22
|
2016-10-28 20:50:29 +02: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 17:45:00 +01:00
|
|
|
junos_command:
|
|
|
|
rpcs: get-software-information
|
2016-10-28 20:50:29 +02:00
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.failed == true"
|
2017-08-01 18:03:11 +02:00
|
|
|
- "'unable to open shell' in result.msg"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
2017-08-05 15:28:06 +02:00
|
|
|
- name: wait for persistent socket to timeout, this ensures new socket creation with connection type netconf
|
|
|
|
pause:
|
|
|
|
seconds: 30
|
|
|
|
|
2016-10-28 20:50:29 +02:00
|
|
|
- name: Set back netconf to default port
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- name: Ensure we can communicate over netconf
|
2017-03-12 17:45:00 +01:00
|
|
|
junos_command:
|
2017-08-04 21:17:32 +02:00
|
|
|
rpcs:
|
|
|
|
- get-software-information
|
2016-10-28 20:50:29 +02:00
|
|
|
provider: "{{ netconf }}"
|
|
|
|
|
|
|
|
- debug: msg="END netconf/changeport.yaml"
|