---
- debug: msg="START net_interface junos/basic.yaml"
- name: setup - remove interface
net_interface:
name: ge-0/0/1
description: test-interface
state: absent
provider: "{{ netconf }}"
- name: Create interface
net_interface:
name: ge-0/0/1
description: test-interface
state: present
provider: "{{ netconf }}"
register: result
- debug:
msg: "{{ result }}"
- assert:
that:
- "result.changed == true"
- "'ge-0/0/1' in result.rpc"
- "'test-interface' in result.rpc"
- name: Create interface (idempotent)
net_interface:
name: ge-0/0/1
description: test-interface
state: present
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == false"
- name: Configure interface attributes
net_interface:
name: ge-0/0/1
description: test-interface
state: present
speed: 1g
mtu: 256
duplex: full
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == true"
- "'ge-0/0/1' in result.rpc"
- "'full-duplex' in result.rpc"
- "'256' in result.rpc"
- "'1g' in result.rpc"
- "'test-interface' in result.rpc"
- name: Disable interface
net_interface:
name: ge-0/0/1
description: test-interface
state: present
enabled: False
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == true"
- "'' in result.rpc"
- "'ge-0/0/1' in result.rpc"
- name: Enable interface
net_interface:
name: ge-0/0/1
description: test-interface
state: present
enabled: True
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == true"
- "'' in result.rpc"
- "'ge-0/0/1' in result.rpc"
- name: Delete interface
net_interface:
name: ge-0/0/1
description: test-interface
state: absent
provider: "{{ netconf }}"
register: result
- assert:
that:
- "result.changed == true"
- "'' in result.rpc"
- "'ge-0/0/1' in result.rpc"