2016-09-03 00:43:43 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
#
|
|
|
|
|
2016-12-06 10:35:05 +00:00
|
|
|
ANSIBLE_METADATA = {'status': ['preview'],
|
|
|
|
'supported_by': 'community',
|
|
|
|
'version': '1.0'}
|
|
|
|
|
2016-09-03 00:43:43 +00:00
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: nxos_feature
|
|
|
|
version_added: "2.1"
|
2016-12-08 02:33:38 +00:00
|
|
|
short_description: Manage features in NX-OS switches.
|
2016-09-03 00:43:43 +00:00
|
|
|
description:
|
2016-12-08 02:33:38 +00:00
|
|
|
- Offers ability to enable and disable features in NX-OS.
|
2016-09-03 00:43:43 +00:00
|
|
|
author:
|
|
|
|
- Jason Edelman (@jedelman8)
|
|
|
|
- Gabriele Gerbino (@GGabriele)
|
|
|
|
options:
|
|
|
|
feature:
|
|
|
|
description:
|
|
|
|
- Name of feature.
|
|
|
|
required: true
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Desired state of the feature.
|
|
|
|
required: false
|
|
|
|
default: 'enabled'
|
|
|
|
choices: ['enabled','disabled']
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
2016-11-22 16:07:21 +00:00
|
|
|
- name: Ensure lacp is enabled
|
|
|
|
nxos_feature:
|
|
|
|
feature: lacp
|
|
|
|
state: enabled
|
|
|
|
host: "{{ inventory_hostname }}"
|
|
|
|
|
|
|
|
- name: Ensure ospf is disabled
|
|
|
|
nxos_feature:
|
|
|
|
feature: ospf
|
|
|
|
state: disabled
|
|
|
|
host: "{{ inventory_hostname }}"
|
|
|
|
|
|
|
|
- name: Ensure vpc is enabled
|
|
|
|
nxos_feature:
|
|
|
|
feature: vpc
|
|
|
|
state: enabled
|
|
|
|
host: "{{ inventory_hostname }}"
|
|
|
|
|
2016-09-03 00:43:43 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = '''
|
2017-02-26 13:12:57 +00:00
|
|
|
commands:
|
|
|
|
description: The set of commands to be sent to the remote device
|
2016-09-03 00:43:43 +00:00
|
|
|
returned: always
|
|
|
|
type: list
|
2017-02-26 13:12:57 +00:00
|
|
|
sample: ['nv overlay evpn']
|
2016-09-03 00:43:43 +00:00
|
|
|
'''
|
2016-09-03 00:40:23 +00:00
|
|
|
import re
|
|
|
|
|
2017-02-15 16:43:09 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2017-02-26 13:12:57 +00:00
|
|
|
from ansible.module_utils.nxos import load_config, run_commands
|
|
|
|
from ansible.module_utils.nxos import nxos_argument_spec
|
|
|
|
from ansible.module_utils.nxos import check_args as nxos_check_args
|
2016-09-03 00:43:43 +00:00
|
|
|
|
2017-02-26 13:12:57 +00:00
|
|
|
def check_args(module, warnings):
|
|
|
|
nxos_check_args(module, warnings)
|
|
|
|
|
|
|
|
for key in ('include_defaults', 'config', 'save'):
|
|
|
|
if module.params[key] is not None:
|
|
|
|
warnings.append('argument %s is no longer supported, ignoring value' % key)
|
2016-09-03 00:43:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_available_features(feature, module):
|
|
|
|
available_features = {}
|
2016-09-13 20:59:44 +00:00
|
|
|
feature_regex = '(?P<feature>\S+)\s+\d+\s+(?P<state>.*)'
|
2016-09-03 00:43:43 +00:00
|
|
|
command = 'show feature'
|
|
|
|
|
2017-02-15 16:43:09 +00:00
|
|
|
command = {'command': command, 'output': 'text'}
|
2017-02-26 13:12:57 +00:00
|
|
|
|
2017-02-15 16:43:09 +00:00
|
|
|
body = run_commands(module, [command])
|
2016-09-13 20:59:44 +00:00
|
|
|
split_body = body[0].splitlines()
|
2016-09-03 00:43:43 +00:00
|
|
|
|
2016-09-13 20:59:44 +00:00
|
|
|
for line in split_body:
|
|
|
|
try:
|
|
|
|
match_feature = re.match(feature_regex, line, re.DOTALL)
|
|
|
|
feature_group = match_feature.groupdict()
|
|
|
|
feature = feature_group['feature']
|
|
|
|
state = feature_group['state']
|
|
|
|
except AttributeError:
|
|
|
|
feature = ''
|
|
|
|
state = ''
|
|
|
|
|
|
|
|
if feature and state:
|
|
|
|
if 'enabled' in state:
|
|
|
|
state = 'enabled'
|
|
|
|
|
2016-11-17 14:19:14 +00:00
|
|
|
if feature not in available_features:
|
2016-09-03 00:43:43 +00:00
|
|
|
available_features[feature] = state
|
2016-09-13 20:59:44 +00:00
|
|
|
else:
|
|
|
|
if (available_features[feature] == 'disabled' and
|
|
|
|
state == 'enabled'):
|
|
|
|
available_features[feature] = state
|
2016-09-03 00:43:43 +00:00
|
|
|
|
|
|
|
return available_features
|
|
|
|
|
|
|
|
|
2016-09-13 20:59:44 +00:00
|
|
|
|
2016-09-03 00:43:43 +00:00
|
|
|
def get_commands(proposed, existing, state, module):
|
|
|
|
feature = validate_feature(module, mode='config')
|
|
|
|
commands = []
|
|
|
|
feature_check = proposed == existing
|
|
|
|
if not feature_check:
|
|
|
|
if state == 'enabled':
|
|
|
|
command = 'feature {0}'.format(feature)
|
|
|
|
commands.append(command)
|
|
|
|
elif state == 'disabled':
|
|
|
|
command = "no feature {0}".format(feature)
|
|
|
|
commands.append(command)
|
|
|
|
return commands
|
|
|
|
|
|
|
|
|
|
|
|
def validate_feature(module, mode='show'):
|
|
|
|
'''Some features may need to be mapped due to inconsistency
|
|
|
|
between how they appear from "show feature" output and
|
|
|
|
how they are configured'''
|
|
|
|
|
|
|
|
feature = module.params['feature']
|
|
|
|
|
|
|
|
feature_to_be_mapped = {
|
|
|
|
'show': {
|
2017-01-29 07:28:53 +00:00
|
|
|
'nv overlay': 'nve',
|
|
|
|
'vn-segment-vlan-based': 'vnseg_vlan',
|
|
|
|
'hsrp': 'hsrp_engine',
|
|
|
|
'fabric multicast': 'fabric_mcast',
|
|
|
|
'scp-server': 'scpServer',
|
|
|
|
'sftp-server': 'sftpServer',
|
|
|
|
'sla responder': 'sla_responder',
|
|
|
|
'sla sender': 'sla_sender',
|
|
|
|
'ssh': 'sshServer',
|
|
|
|
'tacacs+': 'tacacs',
|
|
|
|
'telnet': 'telnetServer',
|
|
|
|
'ethernet-link-oam': 'elo',
|
|
|
|
'port-security': 'eth_port_sec'
|
|
|
|
},
|
2017-01-28 09:39:40 +00:00
|
|
|
'config': {
|
2017-01-29 07:28:53 +00:00
|
|
|
'nve': 'nv overlay',
|
|
|
|
'vnseg_vlan': 'vn-segment-vlan-based',
|
|
|
|
'hsrp_engine': 'hsrp',
|
|
|
|
'fabric_mcast': 'fabric multicast',
|
|
|
|
'scpServer': 'scp-server',
|
|
|
|
'sftpServer': 'sftp-server',
|
|
|
|
'sla_sender': 'sla sender',
|
|
|
|
'sla_responder': 'sla responder',
|
|
|
|
'sshServer': 'ssh',
|
|
|
|
'tacacs': 'tacacs+',
|
|
|
|
'telnetServer': 'telnet',
|
|
|
|
'elo': 'ethernet-link-oam',
|
|
|
|
'eth_port_sec': 'port-security'
|
|
|
|
}
|
|
|
|
}
|
2016-09-03 00:43:43 +00:00
|
|
|
|
|
|
|
if feature in feature_to_be_mapped[mode]:
|
|
|
|
feature = feature_to_be_mapped[mode][feature]
|
|
|
|
|
|
|
|
return feature
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
argument_spec = dict(
|
2017-01-29 07:28:53 +00:00
|
|
|
feature=dict(type='str', required=True),
|
2017-02-26 13:12:57 +00:00
|
|
|
state=dict(choices=['enabled', 'disabled'], default='enabled'),
|
|
|
|
|
|
|
|
# deprecated in Ans2.3
|
|
|
|
include_defaults=dict(),
|
2017-01-29 07:28:53 +00:00
|
|
|
config=dict(),
|
2017-02-26 13:12:57 +00:00
|
|
|
save=dict()
|
2016-09-03 00:43:43 +00:00
|
|
|
)
|
2017-02-15 16:43:09 +00:00
|
|
|
|
|
|
|
argument_spec.update(nxos_argument_spec)
|
|
|
|
|
|
|
|
module = AnsibleModule(argument_spec=argument_spec,
|
2016-12-08 07:01:38 +00:00
|
|
|
supports_check_mode=True)
|
2016-09-03 00:43:43 +00:00
|
|
|
|
2017-02-15 16:43:09 +00:00
|
|
|
warnings = list()
|
|
|
|
check_args(module, warnings)
|
|
|
|
|
2016-09-03 00:43:43 +00:00
|
|
|
feature = validate_feature(module)
|
|
|
|
state = module.params['state'].lower()
|
|
|
|
|
|
|
|
available_features = get_available_features(feature, module)
|
2016-11-17 14:19:14 +00:00
|
|
|
if feature not in available_features:
|
2016-09-03 00:43:43 +00:00
|
|
|
module.fail_json(
|
|
|
|
msg='Invalid feature name.',
|
|
|
|
features_currently_supported=available_features,
|
|
|
|
invalid_feature=feature)
|
|
|
|
else:
|
|
|
|
existstate = available_features[feature]
|
|
|
|
|
|
|
|
existing = dict(state=existstate)
|
|
|
|
proposed = dict(state=state)
|
|
|
|
changed = False
|
|
|
|
end_state = existing
|
|
|
|
|
|
|
|
cmds = get_commands(proposed, existing, state, module)
|
|
|
|
|
|
|
|
if cmds:
|
2017-02-26 13:12:57 +00:00
|
|
|
if not module.check_mode:
|
2017-02-15 16:43:09 +00:00
|
|
|
load_config(module, cmds)
|
2017-02-26 13:12:57 +00:00
|
|
|
changed = True
|
|
|
|
|
|
|
|
results = {
|
|
|
|
'commands': cmds,
|
|
|
|
'changed': changed,
|
|
|
|
'warnings': warnings
|
|
|
|
}
|
2016-09-03 00:43:43 +00:00
|
|
|
|
|
|
|
module.exit_json(**results)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|
2017-02-15 16:43:09 +00:00
|
|
|
|