2016-10-28 20:50:29 +02: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 10:41:44 +01:00
|
|
|
netconf_port: 8022
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: idempotent tests
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
2017-11-14 10:41:44 +01:00
|
|
|
netconf_port: 8022
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
2017-11-14 10:41:44 +01:00
|
|
|
- name: Ensure we can communicate over 8022
|
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-11-14 10:41:44 +01:00
|
|
|
port: 8022
|
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
|
|
|
|
|
|
|
- name: Set back netconf to default port
|
|
|
|
junos_netconf:
|
|
|
|
state: present
|
|
|
|
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"
|