mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
425537861a
* Fix typo in net_logging/eos * This seems to be required to use eos_user in this way * Fix indentation in net_static_route/eos * Rework interface check in eos_vrf This should do the right thing.
102 lines
2.5 KiB
YAML
102 lines
2.5 KiB
YAML
---
|
|
- name: setup - remove config used in test
|
|
net_static_route:
|
|
aggregate:
|
|
- { address: 192.168.3.0/24, next_hop: 192.168.0.1 }
|
|
- { address: 192.168.4.0/24, next_hop: 192.168.0.1 }
|
|
- { address: 192.168.5.0/24, next_hop: 192.168.0.1 }
|
|
authorize: yes
|
|
state: absent
|
|
provider: "{{ cli }}"
|
|
|
|
- name: configure static route
|
|
net_static_route: &single_route
|
|
address: 192.168.3.0/24
|
|
next_hop: 192.168.0.1
|
|
admin_distance: 2
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'ip route 192.168.3.0/24 192.168.0.1 2' in result.commands"
|
|
|
|
- name: configure static route(Idempotence)
|
|
net_static_route: *single_route
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: delete static route
|
|
net_static_route: &delete_single
|
|
address: 192.168.3.0/24
|
|
next_hop: 192.168.0.1
|
|
admin_distance: 2
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
state: absent
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'no ip route 192.168.3.0/24 192.168.0.1' in result.commands"
|
|
|
|
- name: delete static route
|
|
net_static_route: *delete_single
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: configure static routes using aggregate
|
|
net_static_route: &configure_aggregate
|
|
aggregate:
|
|
- { address: 192.168.4.0/24, next_hop: 192.168.0.1 }
|
|
- { address: 192.168.5.0/24, next_hop: 192.168.0.1 }
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'ip route 192.168.4.0/24 192.168.0.1 1' in result.commands"
|
|
- "'ip route 192.168.5.0/24 192.168.0.1 1' in result.commands"
|
|
|
|
- name: configure static routes using aggregate(Idemporence)
|
|
net_static_route: *configure_aggregate
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: delete static routes using aggregate
|
|
net_static_route: &delete_aggregate
|
|
aggregate:
|
|
- { address: 192.168.4.0/24, next_hop: 192.168.0.1 }
|
|
- { address: 192.168.5.0/24, next_hop: 192.168.0.1 }
|
|
authorize: yes
|
|
state: absent
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'no ip route 192.168.4.0/24 192.168.0.1' in result.commands"
|
|
- "'no ip route 192.168.5.0/24 192.168.0.1' in result.commands"
|
|
|
|
- name: delete static routes using aggregate(Idempotence)
|
|
net_static_route: *delete_aggregate
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|