icx: new module icx_static_route (#59978)

* new module

* new module

* new terminal

* new terminal

* new cliconf

* new cliconf

* cliconf

* cliconf

* icx cliconf

* icx cliconf

* icx_cliconf

* icx test units module

* icx test units module

* icx units module

* icx units module

* icx banner unit test

* icx banner unit test

* PR changes resolved

* changes resolved

* Changes Resolved

* check_running_config changes resolved

* added notes

* added notes

* removed icx rst

* new changes

* new changes

* deleted icx rst

* icx .rst

* icx .rst

* modified platform_index.rst

* modified platform_index.rst

* modified platform_index.rst

* modified platform_index.rst

* changes resolved

* changes resolved

* PR comments resolved

* PR comments resolved

* Update platform_index.rst

PR comment resolved

* Update platform_index.rst

PR comment resolved

* new module icx_static_route

* new changes

* new changes

* notes updated
This commit is contained in:
sushma-alethea 2019-08-26 09:12:10 +05:30 committed by Ganesh Nalawade
parent 48eed0b6c8
commit 20ec927280
3 changed files with 445 additions and 0 deletions

View file

@ -0,0 +1,315 @@
#!/usr/bin/python
# Copyright: Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function
__metaclass__ = type
ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'}
DOCUMENTATION = """
---
module: icx_static_route
version_added: "2.9"
author: "Ruckus Wireless (@Commscope)"
short_description: Manage static IP routes on Ruckus ICX 7000 series switches
description:
- This module provides declarative management of static
IP routes on Ruckus ICX network devices.
notes:
- Tested against ICX 10.1.
- For information on using ICX platform, see L(the ICX OS Platform Options guide,../network/user_guide/platform_icx.html).
options:
prefix:
description:
- Network prefix of the static route.
type: str
mask:
description:
- Network prefix mask of the static route.
type: str
next_hop:
description:
- Next hop IP of the static route.
type: str
admin_distance:
description:
- Admin distance of the static route. Range is 1 to 255.
type: int
aggregate:
description: List of static route definitions.
type: list
suboptions:
prefix:
description:
- Network prefix of the static route.
type: str
mask:
description:
- Network prefix mask of the static route.
type: str
next_hop:
description:
- Next hop IP of the static route.
type: str
admin_distance:
description:
- Admin distance of the static route. Range is 1 to 255.
type: int
state:
description:
- State of the static route configuration.
type: str
choices: ['present', 'absent']
check_running_config:
description:
- Check running configuration. This can be set as environment variable.
Module will use environment variable value(default:True), unless it is overriden, by specifying it as module parameter.
type: bool
purge:
description:
- Purge routes not defined in the I(aggregate) parameter.
default: no
type: bool
state:
description:
- State of the static route configuration.
type: str
default: present
choices: ['present', 'absent']
check_running_config:
description:
- Check running configuration. This can be set as environment variable.
Module will use environment variable value(default:True), unless it is overriden, by specifying it as module parameter.
type: bool
default: yes
"""
EXAMPLES = """
- name: configure static route
icx_static_route:
prefix: 192.168.2.0/24
next_hop: 10.0.0.1
- name: remove configuration
icx_static_route:
prefix: 192.168.2.0
mask: 255.255.255.0
next_hop: 10.0.0.1
state: absent
- name: Add static route aggregates
icx_static_route:
aggregate:
- { prefix: 172.16.32.0, mask: 255.255.255.0, next_hop: 10.0.0.8 }
- { prefix: 172.16.33.0, mask: 255.255.255.0, next_hop: 10.0.0.8 }
- name: remove static route aggregates
icx_static_route:
aggregate:
- { prefix: 172.16.32.0, mask: 255.255.255.0, next_hop: 10.0.0.8 }
- { prefix: 172.16.33.0, mask: 255.255.255.0, next_hop: 10.0.0.8 }
state: absent
"""
RETURN = """
commands:
description: The list of configuration mode commands to send to the device
returned: always
type: list
sample:
- ip route 192.168.2.0 255.255.255.0 10.0.0.1
"""
from copy import deepcopy
import re
from ansible.module_utils._text import to_text
from ansible.module_utils.basic import AnsibleModule, env_fallback
from ansible.module_utils.connection import ConnectionError
from ansible.module_utils.network.common.utils import remove_default_spec
from ansible.module_utils.network.icx.icx import get_config, load_config
try:
from ipaddress import ip_network
HAS_IPADDRESS = True
except ImportError:
HAS_IPADDRESS = False
def map_obj_to_commands(want, have, module):
commands = list()
purge = module.params['purge']
for w in want:
for h in have:
for key in ['prefix', 'mask', 'next_hop']:
if w[key] != h[key]:
break
else:
break
else:
h = None
prefix = w['prefix']
mask = w['mask']
next_hop = w['next_hop']
admin_distance = w.get('admin_distance')
if not admin_distance and h:
w['admin_distance'] = admin_distance = h['admin_distance']
state = w['state']
del w['state']
if state == 'absent' and have == []:
commands.append('no ip route %s %s %s' % (prefix, mask, next_hop))
if state == 'absent' and w in have:
commands.append('no ip route %s %s %s' % (prefix, mask, next_hop))
elif state == 'present' and w not in have:
if admin_distance:
commands.append('ip route %s %s %s distance %s' % (prefix, mask, next_hop, admin_distance))
else:
commands.append('ip route %s %s %s' % (prefix, mask, next_hop))
if purge:
commands = []
for h in have:
if h not in want:
commands.append('no ip route %s %s %s' % (prefix, mask, next_hop))
return commands
def map_config_to_obj(module):
obj = []
compare = module.params['check_running_config']
out = get_config(module, flags='| include ip route', compare=compare)
for line in out.splitlines():
splitted_line = line.split()
if len(splitted_line) not in (4, 5, 6):
continue
cidr = ip_network(to_text(splitted_line[2]))
prefix = str(cidr.network_address)
mask = str(cidr.netmask)
next_hop = splitted_line[3]
if len(splitted_line) == 6:
admin_distance = splitted_line[5]
else:
admin_distance = '1'
obj.append({
'prefix': prefix, 'mask': mask, 'next_hop': next_hop,
'admin_distance': admin_distance
})
return obj
def prefix_length_parser(prefix, mask, module):
if '/' in prefix and mask is not None:
module.fail_json(msg='Ambigous, specifed both length and mask')
if '/' in prefix:
cidr = ip_network(to_text(prefix))
prefix = str(cidr.network_address)
mask = str(cidr.netmask)
return prefix, mask
def map_params_to_obj(module, required_together=None):
keys = ['prefix', 'mask', 'next_hop', 'admin_distance', 'state']
obj = []
aggregate = module.params.get('aggregate')
if aggregate:
for item in aggregate:
route = item.copy()
for key in keys:
if route.get(key) is None:
route[key] = module.params.get(key)
module._check_required_together(required_together, route)
prefix, mask = prefix_length_parser(route['prefix'], route['mask'], module)
route.update({'prefix': prefix, 'mask': mask})
obj.append(route)
else:
module._check_required_together(required_together, module.params)
prefix, mask = prefix_length_parser(module.params['prefix'], module.params['mask'], module)
obj.append({
'prefix': prefix,
'mask': mask,
'next_hop': module.params['next_hop'].strip(),
'admin_distance': module.params.get('admin_distance'),
'state': module.params['state'],
})
for route in obj:
if route['admin_distance']:
route['admin_distance'] = str(route['admin_distance'])
return obj
def main():
""" main entry point for module execution
"""
element_spec = dict(
prefix=dict(type='str'),
mask=dict(type='str'),
next_hop=dict(type='str'),
admin_distance=dict(type='int'),
state=dict(default='present', choices=['present', 'absent']),
check_running_config=dict(default=True, type='bool', fallback=(env_fallback, ['ANSIBLE_CHECK_ICX_RUNNING_CONFIG']))
)
aggregate_spec = deepcopy(element_spec)
aggregate_spec['prefix'] = dict(required=True)
remove_default_spec(aggregate_spec)
argument_spec = dict(
aggregate=dict(type='list', elements='dict', options=aggregate_spec),
purge=dict(default=False, type='bool')
)
argument_spec.update(element_spec)
required_one_of = [['aggregate', 'prefix']]
required_together = [['prefix', 'next_hop']]
mutually_exclusive = [['aggregate', 'prefix']]
module = AnsibleModule(argument_spec=argument_spec,
required_one_of=required_one_of,
mutually_exclusive=mutually_exclusive,
supports_check_mode=True)
if not HAS_IPADDRESS:
module.fail_json(msg="ipaddress python package is required")
warnings = list()
result = {'changed': False}
if warnings:
result['warnings'] = warnings
want = map_params_to_obj(module, required_together=required_together)
have = map_config_to_obj(module)
commands = map_obj_to_commands(want, have, module)
result['commands'] = commands
if commands:
if not module.check_mode:
load_config(module, commands)
result['changed'] = True
module.exit_json(**result)
if __name__ == '__main__':
main()

View file

@ -0,0 +1,8 @@
ip route 172.16.0.0/16 10.0.0.8
ip route 172.16.10.0/24 10.0.0.8
ip route 192.0.0.0/8 10.10.15.3
ip route 192.126.0.0/16 10.10.14.31
ip route 192.126.23.0/24 10.10.14.31
ip route 192.128.0.0/16 10.10.14.3
ip route 192.128.0.0/16 10.10.15.3
ip route 192.128.0.0/16 10.10.15.31

View file

@ -0,0 +1,122 @@
# Copyright: (c) 2019, Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
from units.compat.mock import patch
from ansible.modules.network.icx import icx_static_route
from units.modules.utils import set_module_args
from .icx_module import TestICXModule, load_fixture
class TestICXStaticRouteModule(TestICXModule):
module = icx_static_route
def setUp(self):
super(TestICXStaticRouteModule, self).setUp()
self.mock_get_config = patch('ansible.modules.network.icx.icx_static_route.get_config')
self.get_config = self.mock_get_config.start()
self.mock_load_config = patch('ansible.modules.network.icx.icx_static_route.load_config')
self.load_config = self.mock_load_config.start()
self.set_running_config()
def tearDown(self):
super(TestICXStaticRouteModule, self).tearDown()
self.mock_get_config.stop()
self.mock_load_config.stop()
def load_fixtures(self, commands=None):
compares = None
def load_file(*args, **kwargs):
module = args
for arg in args:
if arg.params['check_running_config'] is True:
return load_fixture('icx_static_route_config.txt').strip()
else:
return ''
self.get_config.side_effect = load_file
self.load_config.return_value = None
def test_icx_static_route_config(self):
set_module_args(dict(prefix='192.126.23.0/24', next_hop='10.10.14.3'))
if not self.ENV_ICX_USE_DIFF:
result = self.execute_module(changed=True)
expected_commands = [
'ip route 192.126.23.0 255.255.255.0 10.10.14.3'
]
self.assertEqual(result['commands'], expected_commands)
else:
result = self.execute_module(changed=True)
expected_commands = [
'ip route 192.126.23.0 255.255.255.0 10.10.14.3'
]
self.assertEqual(result['commands'], expected_commands)
def test_icx_static_route_config_compare(self):
set_module_args(dict(prefix='172.16.10.0/24', next_hop='10.0.0.8', check_running_config=True))
if self.get_running_config(compare=True):
if not self.ENV_ICX_USE_DIFF:
result = self.execute_module(changed=False)
expected_commands = [
]
self.assertEqual(result['commands'], expected_commands)
else:
result = self.execute_module(changed=False)
expected_commands = [
]
self.assertEqual(result['commands'], expected_commands)
def test_icx_static_route_distance_config(self):
set_module_args(dict(prefix='192.126.0.0', mask='255.255.0.0', next_hop='10.10.14.3', admin_distance='40'))
if not self.ENV_ICX_USE_DIFF:
result = self.execute_module(changed=True)
expected_commands = [
'ip route 192.126.0.0 255.255.0.0 10.10.14.3 distance 40'
]
self.assertEqual(result['commands'], expected_commands)
else:
result = self.execute_module(changed=True)
expected_commands = [
'ip route 192.126.0.0 255.255.0.0 10.10.14.3 distance 40'
]
self.assertEqual(result['commands'], expected_commands)
def test_icx_static_route_aggregate(self):
aggregate = [
dict(prefix='192.126.23.0/24', next_hop='10.10.14.3'),
dict(prefix='192.126.0.0', mask='255.255.0.0', next_hop='10.10.14.3', admin_distance='40')
]
set_module_args(dict(aggregate=aggregate))
if not self.ENV_ICX_USE_DIFF:
result = self.execute_module(changed=True)
expected_commands = [
'ip route 192.126.23.0 255.255.255.0 10.10.14.3',
'ip route 192.126.0.0 255.255.0.0 10.10.14.3 distance 40'
]
self.assertEqual(result['commands'], expected_commands)
else:
result = self.execute_module(changed=True)
expected_commands = [
'ip route 192.126.23.0 255.255.255.0 10.10.14.3',
'ip route 192.126.0.0 255.255.0.0 10.10.14.3 distance 40'
]
self.assertEqual(result['commands'], expected_commands)
def test_icx_static_route_remove(self):
set_module_args(dict(prefix='172.16.10.0/24', next_hop='10.0.0.8', state='absent'))
if not self.ENV_ICX_USE_DIFF:
result = self.execute_module(changed=True)
expected_commands = [
'no ip route 172.16.10.0 255.255.255.0 10.0.0.8',
]
self.assertEqual(result['commands'], expected_commands)
else:
result = self.execute_module(changed=True)
expected_commands = [
'no ip route 172.16.10.0 255.255.255.0 10.0.0.8',
]
self.assertEqual(result['commands'], expected_commands)