mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
183 lines
5.2 KiB
Python
183 lines
5.2 KiB
Python
#!/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_lldp
|
|
author: "Ruckus Wireless (@Commscope)"
|
|
short_description: Manage LLDP configuration on Ruckus ICX 7000 series switches
|
|
description:
|
|
- This module provides declarative management of LLDP service on 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:
|
|
interfaces:
|
|
description:
|
|
- specify interfaces
|
|
suboptions:
|
|
name:
|
|
description:
|
|
- List of ethernet ports to enable lldp. To add a range of ports use 'to' keyword. See the example.
|
|
type: list
|
|
state:
|
|
description:
|
|
- State of lldp configuration for interfaces
|
|
type: str
|
|
choices: ['present', 'absent', 'enabled', 'disabled']
|
|
type: list
|
|
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 overridden, by specifying it as module parameter.
|
|
type: bool
|
|
default: yes
|
|
state:
|
|
description:
|
|
- Enables the receipt and transmission of Link Layer Discovery Protocol (LLDP) globally.
|
|
type: str
|
|
choices: ['present', 'absent', 'enabled', 'disabled']
|
|
'''
|
|
|
|
EXAMPLES = """
|
|
- name: Disable LLDP
|
|
icx_lldp:
|
|
state: absent
|
|
|
|
- name: Enable LLDP
|
|
icx_lldp:
|
|
state: present
|
|
|
|
- name: Disable LLDP on ports 1/1/1 - 1/1/10, 1/1/20
|
|
icx_lldp:
|
|
interfaces:
|
|
- name:
|
|
- ethernet 1/1/1 to 1/1/10
|
|
- ethernet 1/1/20
|
|
state: absent
|
|
state: present
|
|
|
|
- name: Enable LLDP on ports 1/1/5 - 1/1/10
|
|
icx_lldp:
|
|
interfaces:
|
|
- name:
|
|
- ethernet 1/1/1 to 1/1/10
|
|
"""
|
|
|
|
RETURN = """
|
|
commands:
|
|
description: The list of configuration mode commands to send to the device
|
|
returned: always, except for the platforms that use Netconf transport to manage the device.
|
|
type: list
|
|
sample:
|
|
- lldp run
|
|
- no lldp run
|
|
"""
|
|
|
|
from ansible.module_utils.basic import AnsibleModule, env_fallback
|
|
from ansible_collections.community.general.plugins.module_utils.network.icx.icx import load_config, run_commands
|
|
|
|
|
|
def has_lldp(module):
|
|
run_commands(module, ['skip'])
|
|
output = run_commands(module, ['show lldp'])
|
|
is_lldp_enable = False
|
|
if len(output) > 0 and "LLDP is not running" not in output[0]:
|
|
is_lldp_enable = True
|
|
|
|
return is_lldp_enable
|
|
|
|
|
|
def map_obj_to_commands(module, commands):
|
|
interfaces = module.params.get('interfaces')
|
|
for item in interfaces:
|
|
state = item.get('state')
|
|
if state == 'present':
|
|
for port in item.get('name'):
|
|
if 'all' in port:
|
|
module.fail_json(msg='cannot enable on all the ports')
|
|
else:
|
|
commands.append('lldp enable ports {0}'.format(str(port)))
|
|
elif state == 'absent':
|
|
for port in item.get('name'):
|
|
if 'all' in port:
|
|
module.fail_json(msg='cannot enable on all the ports')
|
|
else:
|
|
commands.append('no lldp enable ports {0}'.format(str(port)))
|
|
|
|
|
|
def main():
|
|
""" main entry point for module execution
|
|
"""
|
|
interfaces_spec = dict(
|
|
name=dict(type='list'),
|
|
state=dict(choices=['present', 'absent',
|
|
'enabled', 'disabled'])
|
|
)
|
|
|
|
argument_spec = dict(
|
|
interfaces=dict(type='list', elements='dict', options=interfaces_spec),
|
|
state=dict(choices=['present', 'absent',
|
|
'enabled', 'disabled']),
|
|
check_running_config=dict(default=True, type='bool', fallback=(env_fallback, ['ANSIBLE_CHECK_ICX_RUNNING_CONFIG']))
|
|
)
|
|
|
|
module = AnsibleModule(argument_spec=argument_spec,
|
|
supports_check_mode=True)
|
|
|
|
warnings = list()
|
|
|
|
result = {'changed': False}
|
|
|
|
if warnings:
|
|
result['warnings'] = warnings
|
|
|
|
if module.params['check_running_config'] is False:
|
|
HAS_LLDP = None
|
|
else:
|
|
HAS_LLDP = has_lldp(module)
|
|
|
|
commands = []
|
|
state = module.params['state']
|
|
|
|
if state is None:
|
|
if HAS_LLDP:
|
|
map_obj_to_commands(module, commands)
|
|
else:
|
|
module.fail_json(msg='LLDP is not running')
|
|
else:
|
|
if state == 'absent' and HAS_LLDP is None:
|
|
commands.append('no lldp run')
|
|
|
|
if state == 'absent' and HAS_LLDP:
|
|
commands.append('no lldp run')
|
|
|
|
elif state == 'present':
|
|
if not HAS_LLDP:
|
|
commands.append('lldp run')
|
|
if module.params.get('interfaces'):
|
|
map_obj_to_commands(module, commands)
|
|
|
|
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()
|