2017-06-09 11:24:28 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# (c) 2017, Ansible by Red Hat, inc
|
|
|
|
#
|
|
|
|
# This file is part of Ansible by Red Hat
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.0',
|
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'core'}
|
|
|
|
|
|
|
|
|
|
|
|
DOCUMENTATION = """
|
|
|
|
---
|
|
|
|
module: eos_vrf
|
|
|
|
version_added: "2.4"
|
|
|
|
author: "Ricardo Carrillo Cruz (@rcarrillocruz)"
|
|
|
|
short_description: Manage VRFs on Arista EOS network devices
|
|
|
|
description:
|
|
|
|
- This module provides declarative management of VRFs
|
|
|
|
on Arista EOS network devices.
|
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- Name of the VRF.
|
|
|
|
required: true
|
|
|
|
rd:
|
|
|
|
description:
|
|
|
|
- Route distinguisher of the VRF
|
|
|
|
interfaces:
|
|
|
|
description:
|
|
|
|
- List of interfaces to check the VRF has been
|
|
|
|
configured correctly.
|
2017-07-26 14:09:17 +00:00
|
|
|
aggregate:
|
2017-06-09 11:24:28 +00:00
|
|
|
description: List of VRFs definitions
|
|
|
|
purge:
|
|
|
|
description:
|
2017-07-26 14:09:17 +00:00
|
|
|
- Purge VRFs not defined in the aggregates parameter.
|
2017-06-09 11:24:28 +00:00
|
|
|
default: no
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- State of the VRF configuration.
|
|
|
|
default: present
|
|
|
|
choices: ['present', 'absent']
|
|
|
|
"""
|
|
|
|
|
|
|
|
EXAMPLES = """
|
|
|
|
"""
|
|
|
|
|
|
|
|
RETURN = """
|
|
|
|
commands:
|
|
|
|
description: The list of configuration mode commands to send to the device
|
|
|
|
returned: always
|
|
|
|
type: list
|
|
|
|
sample:
|
|
|
|
- vrf definition test
|
|
|
|
- rd 1:100
|
|
|
|
- interface Ethernet1
|
|
|
|
- vrf forwarding test
|
|
|
|
"""
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.eos import load_config, run_commands
|
|
|
|
from ansible.module_utils.eos import eos_argument_spec, check_args
|
|
|
|
from ansible.module_utils.six import iteritems
|
|
|
|
|
|
|
|
import re
|
2017-08-08 18:23:45 +00:00
|
|
|
import time
|
2017-06-09 11:24:28 +00:00
|
|
|
|
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
def search_obj_in_list(name, lst):
|
|
|
|
for o in lst:
|
|
|
|
if o['name'] == name:
|
|
|
|
return o
|
|
|
|
|
|
|
|
|
2017-06-09 11:24:28 +00:00
|
|
|
def map_obj_to_commands(updates, module):
|
|
|
|
commands = list()
|
|
|
|
want, have = updates
|
|
|
|
state = module.params['state']
|
2017-08-10 17:59:32 +00:00
|
|
|
purge = module.params['purge']
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
for w in want:
|
|
|
|
name = w['name']
|
|
|
|
rd = w['rd']
|
|
|
|
interfaces = w['interfaces']
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
obj_in_have = search_obj_in_list(name, have)
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
if state == 'absent':
|
2017-08-10 17:59:32 +00:00
|
|
|
if obj_in_have:
|
2017-08-10 08:54:13 +00:00
|
|
|
commands.append('no vrf definition %s' % name)
|
|
|
|
elif state == 'present':
|
|
|
|
if not obj_in_have:
|
|
|
|
commands.append('vrf definition %s' % name)
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
if rd is not None:
|
|
|
|
commands.append('rd %s' % rd)
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
if w['interfaces']:
|
|
|
|
for i in w['interfaces']:
|
2017-06-09 11:24:28 +00:00
|
|
|
commands.append('interface %s' % i)
|
2017-08-10 08:54:13 +00:00
|
|
|
commands.append('vrf forwarding %s' % w['name'])
|
|
|
|
else:
|
|
|
|
if w['rd'] is not None and w['rd'] != obj_in_have['rd']:
|
|
|
|
commands.append('vrf definition %s' % w['name'])
|
|
|
|
commands.append('rd %s' % w['rd'])
|
|
|
|
|
|
|
|
if w['interfaces']:
|
|
|
|
if not obj_in_have['interfaces']:
|
|
|
|
for i in w['interfaces']:
|
|
|
|
commands.append('interface %s' % i)
|
|
|
|
commands.append('vrf forwarding %s' % w['name'])
|
|
|
|
elif set(w['interfaces']) != obj_in_have['interfaces']:
|
|
|
|
missing_interfaces = list(set(w['interfaces']) - set(obj_in_have['interfaces']))
|
|
|
|
|
|
|
|
for i in missing_interfaces:
|
|
|
|
commands.append('interface %s' % i)
|
|
|
|
commands.append('vrf forwarding %s' % w['name'])
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 17:59:32 +00:00
|
|
|
if purge:
|
|
|
|
for h in have:
|
|
|
|
obj_in_want = search_obj_in_list(h['name'], want)
|
|
|
|
if not obj_in_want:
|
|
|
|
commands.append('no vrf definition %s' % h['name'])
|
|
|
|
|
2017-06-09 11:24:28 +00:00
|
|
|
return commands
|
|
|
|
|
|
|
|
|
|
|
|
def map_config_to_obj(module):
|
2017-08-10 08:54:13 +00:00
|
|
|
objs = []
|
|
|
|
output = run_commands(module, ['show vrf'])
|
|
|
|
lines = output[0].strip().splitlines()[2:]
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
for l in lines:
|
|
|
|
if not l:
|
|
|
|
continue
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
splitted_line = re.split(r'\s{2,}', l.strip())
|
2017-06-09 11:24:28 +00:00
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
if len(splitted_line) == 1:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
obj = {}
|
|
|
|
obj['name'] = splitted_line[0]
|
|
|
|
obj['rd'] = splitted_line[1]
|
|
|
|
obj['interfaces'] = None
|
|
|
|
|
|
|
|
if len(splitted_line) > 4:
|
|
|
|
obj['interfaces'] = []
|
|
|
|
|
|
|
|
for i in splitted_line[4].split(','):
|
|
|
|
obj['interfaces'].append(i.strip())
|
|
|
|
|
|
|
|
objs.append(obj)
|
|
|
|
|
|
|
|
return objs
|
2017-06-09 11:24:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
def map_params_to_obj(module):
|
2017-08-10 08:54:13 +00:00
|
|
|
obj = []
|
|
|
|
|
|
|
|
if 'aggregate' in module.params and module.params['aggregate']:
|
|
|
|
for c in module.params['aggregate']:
|
|
|
|
d = c.copy()
|
|
|
|
|
|
|
|
if 'state' not in d:
|
|
|
|
d['state'] = module.params['state']
|
|
|
|
if 'rd' not in d:
|
|
|
|
d['rd'] = module.params['rd']
|
|
|
|
if 'interfaces' not in d:
|
|
|
|
d['interfaces'] = module.params['interfaces']
|
|
|
|
|
|
|
|
obj.append(d)
|
|
|
|
else:
|
|
|
|
name = module.params['name'],
|
|
|
|
state = module.params['state'],
|
|
|
|
rd = module.params['rd'],
|
|
|
|
interfaces = module.params['interfaces']
|
|
|
|
|
|
|
|
obj.append({
|
|
|
|
'name': module.params['name'],
|
|
|
|
'state': module.params['state'],
|
|
|
|
'rd': module.params['rd'],
|
|
|
|
'interfaces': module.params['interfaces']
|
|
|
|
})
|
|
|
|
|
|
|
|
return obj
|
2017-06-09 11:24:28 +00:00
|
|
|
|
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
def check_declarative_intent_params(want, module):
|
2017-08-08 18:23:45 +00:00
|
|
|
if module.params['interfaces']:
|
|
|
|
time.sleep(module.params['delay'])
|
|
|
|
have = map_config_to_obj(module)
|
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
for w in want:
|
|
|
|
for i in w['interfaces']:
|
|
|
|
obj_in_have = search_obj_in_list(w['name'], have)
|
|
|
|
|
|
|
|
if obj_in_have and 'interfaces' in obj_in_have and i not in obj_in_have['interfaces']:
|
|
|
|
module.fail_json(msg="Interface %s not configured on vrf %s" % (i, w['name']))
|
2017-08-08 18:23:45 +00:00
|
|
|
|
|
|
|
|
2017-06-09 11:24:28 +00:00
|
|
|
def main():
|
|
|
|
""" main entry point for module execution
|
|
|
|
"""
|
|
|
|
argument_spec = dict(
|
2017-08-10 08:54:13 +00:00
|
|
|
name=dict(),
|
2017-06-09 11:24:28 +00:00
|
|
|
interfaces=dict(type='list'),
|
2017-08-08 18:23:45 +00:00
|
|
|
delay=dict(default=10, type='int'),
|
2017-06-09 11:24:28 +00:00
|
|
|
rd=dict(),
|
2017-08-10 08:54:13 +00:00
|
|
|
aggregate=dict(type='list'),
|
2017-06-09 11:24:28 +00:00
|
|
|
purge=dict(default=False, type='bool'),
|
|
|
|
state=dict(default='present', choices=['present', 'absent'])
|
|
|
|
)
|
|
|
|
|
|
|
|
argument_spec.update(eos_argument_spec)
|
|
|
|
|
2017-08-10 08:54:13 +00:00
|
|
|
required_one_of = [['name', 'aggregate']]
|
|
|
|
mutually_exclusive = [['name', 'aggregate']]
|
2017-06-09 11:24:28 +00:00
|
|
|
module = AnsibleModule(argument_spec=argument_spec,
|
2017-08-10 08:54:13 +00:00
|
|
|
required_one_of=required_one_of,
|
|
|
|
mutually_exclusive=mutually_exclusive,
|
2017-06-09 11:24:28 +00:00
|
|
|
supports_check_mode=True)
|
|
|
|
|
|
|
|
warnings = list()
|
|
|
|
check_args(module, warnings)
|
|
|
|
|
|
|
|
result = {'changed': False}
|
|
|
|
|
|
|
|
if warnings:
|
|
|
|
result['warnings'] = warnings
|
|
|
|
|
|
|
|
want = map_params_to_obj(module)
|
|
|
|
have = map_config_to_obj(module)
|
|
|
|
|
|
|
|
commands = map_obj_to_commands((want, have), module)
|
|
|
|
result['commands'] = commands
|
|
|
|
|
|
|
|
if commands:
|
|
|
|
commit = not module.check_mode
|
|
|
|
response = load_config(module, commands, commit=commit)
|
|
|
|
if response.get('diff') and module._diff:
|
|
|
|
result['diff'] = {'prepared': response.get('diff')}
|
|
|
|
result['session_name'] = response.get('session')
|
|
|
|
result['changed'] = True
|
|
|
|
|
2017-08-08 18:23:45 +00:00
|
|
|
if result['changed']:
|
2017-08-10 08:54:13 +00:00
|
|
|
check_declarative_intent_params(want, module)
|
2017-08-08 18:23:45 +00:00
|
|
|
|
2017-06-09 11:24:28 +00:00
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|