|
|
|
@ -1,20 +1,52 @@
|
|
|
|
---
|
|
|
|
---
|
|
|
|
- debug: msg="START ios_interface cli/basic.yaml"
|
|
|
|
- debug: msg="START ios_interface cli/basic.yaml"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Run show version
|
|
|
|
|
|
|
|
ios_command:
|
|
|
|
|
|
|
|
commands: show version
|
|
|
|
|
|
|
|
authorize: yes
|
|
|
|
|
|
|
|
register: show_version_result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- block:
|
|
|
|
|
|
|
|
- name: Set test interface to GigabitEthernet0/1 as we are on Cisco IOS
|
|
|
|
|
|
|
|
set_fact: test_interface=GigabitEthernet0/1
|
|
|
|
|
|
|
|
- name: Set test interface 2 to GigabitEthernet0/2 as we are on Cisco IOS
|
|
|
|
|
|
|
|
set_fact: test_interface2=GigabitEthernet0/2
|
|
|
|
|
|
|
|
when: "'Cisco IOS' in show_version_result.stdout[0]"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- block:
|
|
|
|
|
|
|
|
- name: Set test interface to GigabitEthernet2 as we are on Cisco IOS-XE
|
|
|
|
|
|
|
|
set_fact: test_interface=GigabitEthernet2
|
|
|
|
|
|
|
|
- name: Disable autonegotiation on GigabitEthernet2
|
|
|
|
|
|
|
|
ios_config:
|
|
|
|
|
|
|
|
lines:
|
|
|
|
|
|
|
|
- no negotiation auto
|
|
|
|
|
|
|
|
parents: int GigabitEthernet2
|
|
|
|
|
|
|
|
authorize: yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Set test interface 2 to GigabitEthernet3 as we are on Cisco IOS-XE
|
|
|
|
|
|
|
|
set_fact: test_interface2=GigabitEthernet3
|
|
|
|
|
|
|
|
- name: Disable autonegotiation on GigabitEthernet3
|
|
|
|
|
|
|
|
ios_config:
|
|
|
|
|
|
|
|
lines:
|
|
|
|
|
|
|
|
- no negotiation auto
|
|
|
|
|
|
|
|
parents: int GigabitEthernet3
|
|
|
|
|
|
|
|
authorize: yes
|
|
|
|
|
|
|
|
when: "'Cisco IOS-XE' in show_version_result.stdout[0]"
|
|
|
|
|
|
|
|
|
|
|
|
- name: Configure interface (setup)
|
|
|
|
- name: Configure interface (setup)
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
name: GigabitEthernet0/2
|
|
|
|
name: "{{ test_interface }}"
|
|
|
|
description: test-interface-1
|
|
|
|
description: test-interface-1
|
|
|
|
speed: 10
|
|
|
|
speed: 1000
|
|
|
|
duplex: full
|
|
|
|
mtu: 1800
|
|
|
|
mtu: 256
|
|
|
|
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
register: result
|
|
|
|
|
|
|
|
|
|
|
|
- name: Confgure interface
|
|
|
|
- name: Configure interface
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
name: GigabitEthernet0/2
|
|
|
|
name: "{{ test_interface }}"
|
|
|
|
description: test-interface-initial
|
|
|
|
description: test-interface-initial
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
@ -23,12 +55,12 @@
|
|
|
|
- assert:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface GigabitEthernet0/2" in result.commands'
|
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
|
|
|
- '"description test-interface-initial" in result.commands'
|
|
|
|
- '"description test-interface-initial" in result.commands'
|
|
|
|
|
|
|
|
|
|
|
|
- name: Confgure interface (idempotent)
|
|
|
|
- name: Confgure interface (idempotent)
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
name: GigabitEthernet0/2
|
|
|
|
name: "{{ test_interface }}"
|
|
|
|
description: test-interface-initial
|
|
|
|
description: test-interface-initial
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
@ -40,10 +72,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
- name: Confgure interface parameters
|
|
|
|
- name: Confgure interface parameters
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
name: GigabitEthernet0/2
|
|
|
|
name: "{{ test_interface }}"
|
|
|
|
description: test-interface
|
|
|
|
description: test-interface
|
|
|
|
speed: 100
|
|
|
|
mtu: 2000
|
|
|
|
mtu: 512
|
|
|
|
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
register: result
|
|
|
|
@ -51,18 +82,15 @@
|
|
|
|
- assert:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface GigabitEthernet0/2" in result.commands'
|
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
|
|
|
- '"description test-interface" in result.commands'
|
|
|
|
- '"description test-interface" in result.commands'
|
|
|
|
- '"speed 100" in result.commands'
|
|
|
|
- '"mtu 2000" in result.commands'
|
|
|
|
- '"mtu 512" in result.commands'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Change interface parameters
|
|
|
|
- name: Change interface parameters
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
name: GigabitEthernet0/2
|
|
|
|
name: "{{ test_interface }}"
|
|
|
|
description: test-interface-1
|
|
|
|
description: test-interface-1
|
|
|
|
speed: 10
|
|
|
|
mtu: 1800
|
|
|
|
duplex: half
|
|
|
|
|
|
|
|
mtu: 256
|
|
|
|
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
register: result
|
|
|
|
@ -70,15 +98,13 @@
|
|
|
|
- assert:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface GigabitEthernet0/2" in result.commands'
|
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
|
|
|
- '"description test-interface-1" in result.commands'
|
|
|
|
- '"description test-interface-1" in result.commands'
|
|
|
|
- '"speed 10" in result.commands'
|
|
|
|
- '"mtu 1800" in result.commands'
|
|
|
|
- '"duplex half" in result.commands'
|
|
|
|
|
|
|
|
- '"mtu 256" in result.commands'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Disable interface
|
|
|
|
- name: Disable interface
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
name: GigabitEthernet0/2
|
|
|
|
name: "{{ test_interface }}"
|
|
|
|
enabled: False
|
|
|
|
enabled: False
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
register: result
|
|
|
|
@ -86,12 +112,12 @@
|
|
|
|
- assert:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface GigabitEthernet0/2" in result.commands'
|
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
|
|
|
- '"shutdown" in result.commands'
|
|
|
|
- '"shutdown" in result.commands'
|
|
|
|
|
|
|
|
|
|
|
|
- name: Enable interface
|
|
|
|
- name: Enable interface
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
name: GigabitEthernet0/2
|
|
|
|
name: "{{ test_interface }}"
|
|
|
|
enabled: True
|
|
|
|
enabled: True
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
register: result
|
|
|
|
@ -99,16 +125,15 @@
|
|
|
|
- assert:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface GigabitEthernet0/2" in result.commands'
|
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
|
|
|
- '"no shutdown" in result.commands'
|
|
|
|
- '"no shutdown" in result.commands'
|
|
|
|
|
|
|
|
|
|
|
|
- name: Confgure second interface (setup)
|
|
|
|
- name: Confgure second interface (setup)
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
name: GigabitEthernet0/1
|
|
|
|
name: "{{ test_interface2 }}"
|
|
|
|
description: test-interface-initial
|
|
|
|
description: test-interface-initial
|
|
|
|
speed: 100
|
|
|
|
speed: 1000
|
|
|
|
duplex: half
|
|
|
|
mtu: 1800
|
|
|
|
mtu: 516
|
|
|
|
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
register: result
|
|
|
|
@ -116,10 +141,9 @@
|
|
|
|
- name: Add interface aggregate
|
|
|
|
- name: Add interface aggregate
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
|
|
|
aggregate:
|
|
|
|
- { name: GigabitEthernet0/1, mtu: 256, description: test-interface-1 }
|
|
|
|
- { name: "{{ test_interface }}", mtu: 2000, description: test-interface-1 }
|
|
|
|
- { name: GigabitEthernet0/2, mtu: 516, description: test-interface-2 }
|
|
|
|
- { name: "{{ test_interface2 }}", mtu: 2000, description: test-interface-2 }
|
|
|
|
duplex: full
|
|
|
|
speed: 1000
|
|
|
|
speed: 100
|
|
|
|
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
register: result
|
|
|
|
@ -127,24 +151,18 @@
|
|
|
|
- assert:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface GigabitEthernet0/1" in result.commands'
|
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
|
|
|
- '"speed 100" in result.commands'
|
|
|
|
- '"mtu 2000" in result.commands'
|
|
|
|
- '"description test-interface-1" in result.commands'
|
|
|
|
- '"interface {{ test_interface2 }}" in result.commands'
|
|
|
|
- '"duplex full" in result.commands'
|
|
|
|
|
|
|
|
- '"mtu 256" in result.commands'
|
|
|
|
|
|
|
|
- '"interface GigabitEthernet0/2" in result.commands'
|
|
|
|
|
|
|
|
- '"speed 100" in result.commands'
|
|
|
|
|
|
|
|
- '"description test-interface-2" in result.commands'
|
|
|
|
- '"description test-interface-2" in result.commands'
|
|
|
|
- '"duplex full" in result.commands'
|
|
|
|
- '"mtu 2000" in result.commands'
|
|
|
|
- '"mtu 516" in result.commands'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Add interface aggregate (idempotent)
|
|
|
|
- name: Add interface aggregate (idempotent)
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
|
|
|
aggregate:
|
|
|
|
- { name: GigabitEthernet0/1, mtu: 256, description: test-interface-1 }
|
|
|
|
- { name: "{{ test_interface }}", mtu: 2000, description: test-interface-1 }
|
|
|
|
- { name: GigabitEthernet0/2, mtu: 516, description: test-interface-2 }
|
|
|
|
- { name: "{{ test_interface2 }}", mtu: 2000, description: test-interface-2 }
|
|
|
|
duplex: full
|
|
|
|
speed: 1000
|
|
|
|
speed: 100
|
|
|
|
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
register: result
|
|
|
|
@ -156,8 +174,8 @@
|
|
|
|
- name: Disable interface aggregate
|
|
|
|
- name: Disable interface aggregate
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
|
|
|
aggregate:
|
|
|
|
- name: GigabitEthernet0/1
|
|
|
|
- { name: "{{ test_interface }}" }
|
|
|
|
- name: GigabitEthernet0/2
|
|
|
|
- { name: "{{ test_interface2 }}" }
|
|
|
|
enabled: False
|
|
|
|
enabled: False
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
@ -166,16 +184,16 @@
|
|
|
|
- assert:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface GigabitEthernet0/1" in result.commands'
|
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
|
|
|
- '"shutdown" in result.commands'
|
|
|
|
- '"shutdown" in result.commands'
|
|
|
|
- '"interface GigabitEthernet0/2" in result.commands'
|
|
|
|
- '"interface {{ test_interface2 }}" in result.commands'
|
|
|
|
- '"shutdown" in result.commands'
|
|
|
|
- '"shutdown" in result.commands'
|
|
|
|
|
|
|
|
|
|
|
|
- name: Enable interface aggregate
|
|
|
|
- name: Enable interface aggregate
|
|
|
|
ios_interface:
|
|
|
|
ios_interface:
|
|
|
|
aggregate:
|
|
|
|
aggregate:
|
|
|
|
- name: GigabitEthernet0/1
|
|
|
|
- { name: "{{ test_interface }}" }
|
|
|
|
- name: GigabitEthernet0/2
|
|
|
|
- { name: "{{ test_interface2 }}" }
|
|
|
|
enabled: True
|
|
|
|
enabled: True
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
authorize: yes
|
|
|
|
@ -184,9 +202,9 @@
|
|
|
|
- assert:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"interface GigabitEthernet0/1" in result.commands'
|
|
|
|
- '"interface {{ test_interface }}" in result.commands'
|
|
|
|
- '"no shutdown" in result.commands'
|
|
|
|
- '"no shutdown" in result.commands'
|
|
|
|
- '"interface GigabitEthernet0/2" in result.commands'
|
|
|
|
- '"interface {{ test_interface2 }}" in result.commands'
|
|
|
|
- '"no shutdown" in result.commands'
|
|
|
|
- '"no shutdown" in result.commands'
|
|
|
|
|
|
|
|
|
|
|
|
- name: loopback interface setup
|
|
|
|
- name: loopback interface setup
|
|
|
|
|