2017-08-01 17:50:08 +00:00
|
|
|
---
|
2017-08-18 18:39:01 +00:00
|
|
|
- debug: msg="START ios_interface cli/basic.yaml"
|
2017-08-01 17:50:08 +00:00
|
|
|
|
2017-10-25 15:38:18 +00:00
|
|
|
- name: Run show version
|
|
|
|
ios_command:
|
|
|
|
commands: show version
|
|
|
|
authorize: yes
|
|
|
|
register: show_version_result
|
|
|
|
|
|
|
|
- name: Set test interface to GigabitEthernet0/1 if we are on Cisco IOS
|
|
|
|
set_fact: test_interface=GigabitEthernet0/1
|
|
|
|
when: "'Cisco IOS' in show_version_result.stdout[0]"
|
|
|
|
|
|
|
|
- name: Set test interface 2 to GigabitEthernet0/2 if we are on Cisco IOS
|
|
|
|
set_fact: test_interface2=GigabitEthernet0/2
|
|
|
|
when: "'Cisco IOS' in show_version_result.stdout[0]"
|
|
|
|
|
|
|
|
- name: Set test interface to GigabitEthernet2 if we are on Cisco IOS-XE
|
|
|
|
set_fact: test_interface=GigabitEthernet2
|
|
|
|
when: "'Cisco IOS-XE' in show_version_result.stdout[0]"
|
|
|
|
|
|
|
|
- name: Set test interface 2 to GigabitEthernet3 if we are on Cisco IOS-XE
|
|
|
|
set_fact: test_interface2=GigabitEthernet3
|
|
|
|
when: "'Cisco IOS-XE' in show_version_result.stdout[0]"
|
|
|
|
|
2017-08-15 13:50:28 +00:00
|
|
|
- name: Configure interface (setup)
|
|
|
|
ios_interface:
|
2017-10-25 15:38:18 +00:00
|
|
|
name: "{{ test_interface }}"
|
2017-08-15 13:50:28 +00:00
|
|
|
description: test-interface-1
|
2017-10-25 16:17:32 +00:00
|
|
|
speed: 1000
|
2017-08-15 13:50:28 +00:00
|
|
|
mtu: 256
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
2017-10-25 16:17:32 +00:00
|
|
|
- name: Configure interface
|
2017-08-01 17:50:08 +00:00
|
|
|
ios_interface:
|
2017-10-25 15:38:18 +00:00
|
|
|
name: "{{ test_interface }}"
|
2017-08-01 17:50:08 +00:00
|
|
|
description: test-interface-initial
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-10-25 16:17:32 +00:00
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"description test-interface-initial" in result.commands'
|
|
|
|
|
|
|
|
- name: Confgure interface (idempotent)
|
|
|
|
ios_interface:
|
2017-10-25 15:38:18 +00:00
|
|
|
name: "{{ test_interface }}"
|
2017-08-01 17:50:08 +00:00
|
|
|
description: test-interface-initial
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|
|
|
|
|
|
|
|
- name: Confgure interface parameters
|
|
|
|
ios_interface:
|
2017-10-25 15:38:18 +00:00
|
|
|
name: "{{ test_interface }}"
|
2017-08-01 17:50:08 +00:00
|
|
|
description: test-interface
|
|
|
|
mtu: 512
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"description test-interface" in result.commands'
|
|
|
|
- '"mtu 512" in result.commands'
|
|
|
|
|
|
|
|
- name: Change interface parameters
|
|
|
|
ios_interface:
|
2017-10-25 15:38:18 +00:00
|
|
|
name: "{{ test_interface }}"
|
2017-08-01 17:50:08 +00:00
|
|
|
description: test-interface-1
|
|
|
|
mtu: 256
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"description test-interface-1" in result.commands'
|
|
|
|
- '"mtu 256" in result.commands'
|
|
|
|
|
|
|
|
- name: Disable interface
|
|
|
|
ios_interface:
|
2017-10-25 15:38:18 +00:00
|
|
|
name: "{{ test_interface }}"
|
2017-08-15 13:50:28 +00:00
|
|
|
enabled: False
|
2017-08-01 17:50:08 +00:00
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"shutdown" in result.commands'
|
|
|
|
|
|
|
|
- name: Enable interface
|
|
|
|
ios_interface:
|
2017-10-25 15:38:18 +00:00
|
|
|
name: "{{ test_interface }}"
|
2017-08-15 13:50:28 +00:00
|
|
|
enabled: True
|
2017-08-01 17:50:08 +00:00
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"no shutdown" in result.commands'
|
|
|
|
|
|
|
|
- name: Confgure second interface (setup)
|
|
|
|
ios_interface:
|
2017-10-25 15:38:18 +00:00
|
|
|
name: "{{ test_interface2 }}"
|
2017-08-01 17:50:08 +00:00
|
|
|
description: test-interface-initial
|
2017-10-25 16:17:32 +00:00
|
|
|
speed: 1000
|
2017-08-15 13:50:28 +00:00
|
|
|
mtu: 516
|
2017-08-01 17:50:08 +00:00
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- name: Add interface aggregate
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
2017-10-25 15:38:18 +00:00
|
|
|
- "{ name: {{ test_interface }}, mtu: 256, description: test-interface-1 }"
|
|
|
|
- "{ name: {{ test_interface2 }}, mtu: 516, description: test-interface-2 }"
|
2017-10-25 16:17:32 +00:00
|
|
|
speed: 1000
|
2017-08-01 17:50:08 +00:00
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"description test-interface-1" in result.commands'
|
|
|
|
- '"mtu 256" in result.commands'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface2 }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"description test-interface-2" in result.commands'
|
|
|
|
- '"mtu 516" in result.commands'
|
|
|
|
|
|
|
|
- name: Add interface aggregate (idempotent)
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
2017-10-25 15:38:18 +00:00
|
|
|
- "{ name: {{ test_interface }}, mtu: 256, description: test-interface-1 }"
|
|
|
|
- "{ name: {{ test_interface2 }}, mtu: 516, description: test-interface-2 }"
|
2017-10-25 16:17:32 +00:00
|
|
|
speed: 1000
|
2017-08-01 17:50:08 +00:00
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|
|
|
|
|
|
|
|
- name: Disable interface aggregate
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
2017-10-25 15:38:18 +00:00
|
|
|
- "name: {{ test_interface }}"
|
|
|
|
- "name: {{ test_interface2 }}"
|
2017-08-17 06:37:08 +00:00
|
|
|
enabled: False
|
2017-08-01 17:50:08 +00:00
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"shutdown" in result.commands'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface2 }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"shutdown" in result.commands'
|
|
|
|
|
|
|
|
- name: Enable interface aggregate
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
2017-10-25 15:38:18 +00:00
|
|
|
- "name: {{ test_interface }}"
|
|
|
|
- "name: {{ test_interface2 }}"
|
2017-08-17 06:37:08 +00:00
|
|
|
enabled: True
|
2017-08-01 17:50:08 +00:00
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"no shutdown" in result.commands'
|
2017-10-25 15:38:18 +00:00
|
|
|
- '"interface {{ test_interface2 }}" in result.commands'
|
2017-08-01 17:50:08 +00:00
|
|
|
- '"no shutdown" in result.commands'
|
|
|
|
|
2017-08-18 18:39:01 +00:00
|
|
|
- name: loopback interface setup
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
|
|
|
- name: Loopback9
|
|
|
|
- name: Loopback10
|
|
|
|
state: absent
|
|
|
|
authorize: yes
|
|
|
|
|
2017-08-01 17:50:08 +00:00
|
|
|
- name: Create loopback interface aggregate
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
2017-08-17 06:37:08 +00:00
|
|
|
- name: Loopback9
|
|
|
|
- name: Loopback10
|
2017-08-01 17:50:08 +00:00
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface Loopback9" in result.commands'
|
|
|
|
- '"interface Loopback10" in result.commands'
|
|
|
|
|
|
|
|
- name: Delete loopback interface aggregate
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
2017-08-17 06:37:08 +00:00
|
|
|
- name: Loopback9
|
|
|
|
- name: Loopback10
|
|
|
|
state: absent
|
2017-08-01 17:50:08 +00:00
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"no interface Loopback9" in result.commands'
|
|
|
|
- '"no interface Loopback10" in result.commands'
|
|
|
|
|
|
|
|
- name: Delete loopback interface aggregate (idempotent)
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
2017-08-17 06:37:08 +00:00
|
|
|
- name: Loopback9
|
|
|
|
- name: Loopback10
|
|
|
|
state: absent
|
2017-08-01 17:50:08 +00:00
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|
|
|
|
|
|
|
|
- debug: msg="END ios_interface cli/basic.yaml"
|