Improving nxos_ip_interface module (#21353)
* Improving of nxos_ip_interface module Added features: * Route tags for an IP address at interface level with 'tag' option * Support of IPv4 secondary addresses if option 'allow_secondary' is true (false by default). If option 'allow_secondary' is true primary IPv4 address will be replaced All features support NXAPI and CLI transport, but only with text/raw output. Currently not possible to get route tags for secondary IPv4/IPv6 addresses from JSON output. Other changes: * Module return state 'changed' only when configuration commands were executed * Module result includes multiple prefixes if IPv4 addresses were found * Fix PEP8 issues * Addition fix of PEP8 issues * Remove unused variable from main() * Fix "proposed" sample in RETURN variable * Fix "existing" sample in RETURN variable * Update RETURN variable Add 'secondary' for every element of 'addresses' list. * Restore old version number * Added exception when ipaddress module is imported * DOCUMENTATION string was updated * Added 'version_added' for new features * Added 'requirements' for module * Added compatibility with latest commit in devel branch * DOCUMENTATION was fixed * Improve changes of route tag for existing ip addresses * Added compatibility with core code * Fixed mistypes in the DOCUMENTATION variable * argument_spec fixed allow_secondary argument type was changed according to allowed choices.pull/4420/head
parent
78ed0cadea
commit
62b8813873
|
@ -20,15 +20,14 @@ ANSIBLE_METADATA = {'metadata_version': '1.0',
|
||||||
'status': ['preview'],
|
'status': ['preview'],
|
||||||
'supported_by': 'community'}
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: nxos_ip_interface
|
module: nxos_ip_interface
|
||||||
extends_documentation_fragment: nxos
|
|
||||||
version_added: "2.1"
|
version_added: "2.1"
|
||||||
short_description: Manages L3 attributes for IPv4 and IPv6 interfaces.
|
short_description: Manages L3 attributes for IPv4 and IPv6 interfaces.
|
||||||
description:
|
description:
|
||||||
- Manages Layer 3 attributes for IPv4 and IPv6 interfaces.
|
- Manages Layer 3 attributes for IPv4 and IPv6 interfaces.
|
||||||
|
extends_documentation_fragment: nxos
|
||||||
author:
|
author:
|
||||||
- Jason Edelman (@jedelman8)
|
- Jason Edelman (@jedelman8)
|
||||||
- Gabriele Gerbino (@GGabriele)
|
- Gabriele Gerbino (@GGabriele)
|
||||||
|
@ -53,12 +52,26 @@ options:
|
||||||
- Subnet mask for IPv4 or IPv6 Address in decimal format.
|
- Subnet mask for IPv4 or IPv6 Address in decimal format.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
tag:
|
||||||
|
description:
|
||||||
|
- Route tag for IPv4 or IPv6 Address in integer format.
|
||||||
|
required: false
|
||||||
|
default: 0
|
||||||
|
version_added: "2.4"
|
||||||
|
allow_secondary:
|
||||||
|
description:
|
||||||
|
- Allow to configure IPv4 secondary addresses on interface.
|
||||||
|
required: false
|
||||||
|
default: false
|
||||||
|
version_added: "2.4"
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Specify desired state of the resource.
|
- Specify desired state of the resource.
|
||||||
required: false
|
required: false
|
||||||
default: present
|
default: present
|
||||||
choices: ['present','absent']
|
choices: ['present','absent']
|
||||||
|
requirements:
|
||||||
|
- "ipaddress"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
@ -79,6 +92,26 @@ EXAMPLES = '''
|
||||||
state: present
|
state: present
|
||||||
addr: '2001::db8:800:200c:cccb'
|
addr: '2001::db8:800:200c:cccb'
|
||||||
mask: 64
|
mask: 64
|
||||||
|
|
||||||
|
- name: Ensure ipv4 address is configured with tag
|
||||||
|
nxos_ip_interface:
|
||||||
|
interface: Ethernet1/32
|
||||||
|
transport: nxapi
|
||||||
|
version: v4
|
||||||
|
state: present
|
||||||
|
tag: 100
|
||||||
|
addr: 20.20.20.20
|
||||||
|
mask: 24
|
||||||
|
|
||||||
|
- name: Configure ipv4 address as secondary if needed
|
||||||
|
nxos_ip_interface:
|
||||||
|
interface: Ethernet1/32
|
||||||
|
transport: nxapi
|
||||||
|
version: v4
|
||||||
|
state: present
|
||||||
|
allow_secondary: true
|
||||||
|
addr: 21.21.21.21
|
||||||
|
mask: 24
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
|
@ -86,26 +119,28 @@ proposed:
|
||||||
description: k/v pairs of parameters passed into module
|
description: k/v pairs of parameters passed into module
|
||||||
returned: always
|
returned: always
|
||||||
type: dict
|
type: dict
|
||||||
sample: {"addr": "20.20.20.20", "interface": "ethernet1/32", "mask": "24"}
|
sample: {"addr": "20.20.20.20", "allow_secondary": true,
|
||||||
|
"interface": "Ethernet1/32", "mask": "24", "tag": 100}
|
||||||
existing:
|
existing:
|
||||||
description: k/v pairs of existing IP attributes on the interface
|
description: k/v pairs of existing IP attributes on the interface
|
||||||
returned: always
|
returned: always
|
||||||
type: dict
|
type: dict
|
||||||
sample: {"addresses": [{"addr": "11.11.11.11", "mask": 17}],
|
sample: {"addresses": [{"addr": "11.11.11.11", "mask": 17, "tag": 101, "secondary": false}],
|
||||||
"interface": "ethernet1/32", "prefix": "11.11.0.0",
|
"interface": "ethernet1/32", "prefixes": ["11.11.0.0/17"],
|
||||||
"type": "ethernet", "vrf": "default"}
|
"type": "ethernet", "vrf": "default"}
|
||||||
end_state:
|
end_state:
|
||||||
description: k/v pairs of IP attributes after module execution
|
description: k/v pairs of IP attributes after module execution
|
||||||
returned: always
|
returned: always
|
||||||
type: dict
|
type: dict
|
||||||
sample: {"addresses": [{"addr": "20.20.20.20", "mask": 24}],
|
sample: {"addresses": [{"addr": "11.11.11.11", "mask": 17, "tag": 101, "secondary": false},
|
||||||
"interface": "ethernet1/32", "prefix": "20.20.20.0",
|
{"addr": "20.20.20.20", "mask": 24, "tag": 100, "secondary": true}],
|
||||||
|
"interface": "ethernet1/32", "prefixes": ["11.11.0.0/17", "20.20.20.0/24"],
|
||||||
"type": "ethernet", "vrf": "default"}
|
"type": "ethernet", "vrf": "default"}
|
||||||
updates:
|
updates:
|
||||||
description: commands sent to the device
|
description: commands sent to the device
|
||||||
returned: always
|
returned: always
|
||||||
type: list
|
type: list
|
||||||
sample: ["interface ethernet1/32", "ip address 20.20.20.20/24"]
|
sample: ["interface ethernet1/32", "ip address 20.20.20.20/24 secondary tag 100"]
|
||||||
changed:
|
changed:
|
||||||
description: check to see if a change was made on the device
|
description: check to see if a change was made on the device
|
||||||
returned: always
|
returned: always
|
||||||
|
@ -113,37 +148,46 @@ changed:
|
||||||
sample: true
|
sample: true
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from ansible.module_utils.nxos import get_config, load_config, run_commands
|
import re
|
||||||
|
|
||||||
|
try:
|
||||||
|
import ipaddress
|
||||||
|
|
||||||
|
HAS_IPADDRESS = True
|
||||||
|
except ImportError:
|
||||||
|
HAS_IPADDRESS = False
|
||||||
|
|
||||||
|
from ansible.module_utils.nxos import load_config, run_commands
|
||||||
from ansible.module_utils.nxos import nxos_argument_spec, check_args
|
from ansible.module_utils.nxos import nxos_argument_spec, check_args
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
import re
|
|
||||||
|
|
||||||
def execute_show_command(command, module, command_type='cli_show'):
|
def find_same_addr(existing, addr, mask, full=False, **kwargs):
|
||||||
if module.params['transport'] == 'cli':
|
for address in existing['addresses']:
|
||||||
command += ' | json'
|
if address['addr'] == addr and address['mask'] == mask:
|
||||||
cmds = [command]
|
if full:
|
||||||
body = run_commands(module, cmds)
|
if kwargs['version'] == 'v4' and int(address['tag']) == kwargs['tag']:
|
||||||
elif module.params['transport'] == 'nxapi':
|
return address
|
||||||
cmds = [command]
|
elif kwargs['version'] == 'v6':
|
||||||
body = run_commands(module, cmds)
|
# Currently we don't get info about IPv6 address tag
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
return address
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def execute_show_command(command, module):
|
||||||
|
cmd = {}
|
||||||
|
cmd['answer'] = None
|
||||||
|
cmd['command'] = command
|
||||||
|
cmd['output'] = 'text'
|
||||||
|
cmd['prompt'] = None
|
||||||
|
|
||||||
|
body = run_commands(module, [cmd])
|
||||||
|
|
||||||
return body
|
return body
|
||||||
|
|
||||||
|
|
||||||
def apply_key_map(key_map, table):
|
|
||||||
new_dict = {}
|
|
||||||
for key, value in table.items():
|
|
||||||
new_key = key_map.get(key)
|
|
||||||
if new_key:
|
|
||||||
value = table.get(key)
|
|
||||||
if value:
|
|
||||||
new_dict[new_key] = str(value)
|
|
||||||
else:
|
|
||||||
new_dict[new_key] = value
|
|
||||||
return new_dict
|
|
||||||
|
|
||||||
|
|
||||||
def get_interface_type(interface):
|
def get_interface_type(interface):
|
||||||
if interface.upper().startswith('ET'):
|
if interface.upper().startswith('ET'):
|
||||||
return 'ethernet'
|
return 'ethernet'
|
||||||
|
@ -174,26 +218,21 @@ def is_default(interface, module):
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
except (KeyError):
|
except KeyError:
|
||||||
return 'DNE'
|
return 'DNE'
|
||||||
|
|
||||||
|
|
||||||
def get_interface_mode(interface, intf_type, module):
|
def get_interface_mode(interface, intf_type, module):
|
||||||
command = 'show interface {0}'.format(interface)
|
command = 'show interface {0} switchport'.format(interface)
|
||||||
mode = 'unknown'
|
mode = 'unknown'
|
||||||
|
|
||||||
if intf_type in ['ethernet', 'portchannel']:
|
if intf_type in ['ethernet', 'portchannel']:
|
||||||
body = execute_show_command(command, module)[0]
|
body = execute_show_command(command, module)[0]
|
||||||
|
if len(body) > 0:
|
||||||
if isinstance(body, str):
|
if 'Switchport: Disabled' in body:
|
||||||
if 'invalid interface format' in body.lower():
|
mode = 'layer3'
|
||||||
module.fail_json(msg='Invalid interface name. Please check '
|
elif 'Switchport: Enabled' in body:
|
||||||
'its format.', interface=interface)
|
mode = "layer2"
|
||||||
|
|
||||||
interface_table = body['TABLE_interface']['ROW_interface']
|
|
||||||
mode = str(interface_table.get('eth_mode', 'layer3'))
|
|
||||||
if mode == 'access' or mode == 'trunk':
|
|
||||||
mode = 'layer2'
|
|
||||||
elif intf_type == 'svi':
|
elif intf_type == 'svi':
|
||||||
mode = 'layer3'
|
mode = 'layer3'
|
||||||
return mode
|
return mode
|
||||||
|
@ -204,78 +243,22 @@ def send_show_command(interface_name, version, module):
|
||||||
command = 'show ip interface {0}'.format(interface_name)
|
command = 'show ip interface {0}'.format(interface_name)
|
||||||
elif version == 'v6':
|
elif version == 'v6':
|
||||||
command = 'show ipv6 interface {0}'.format(interface_name)
|
command = 'show ipv6 interface {0}'.format(interface_name)
|
||||||
|
|
||||||
if module.params['transport'] == 'nxapi' and version == 'v6':
|
|
||||||
body = execute_show_command(command, module,
|
|
||||||
command_type='cli_show_ascii')
|
|
||||||
else:
|
|
||||||
body = execute_show_command(command, module)
|
body = execute_show_command(command, module)
|
||||||
return body
|
return body
|
||||||
|
|
||||||
|
|
||||||
def parse_structured_data(body, interface_name, version, module):
|
def parse_unstructured_data(body, interface_name, version, module):
|
||||||
address_list = []
|
|
||||||
|
|
||||||
interface_key = {
|
|
||||||
'subnet': 'prefix',
|
|
||||||
'prefix': 'prefix'
|
|
||||||
}
|
|
||||||
|
|
||||||
try:
|
|
||||||
interface_table = body[0]['TABLE_intf']['ROW_intf']
|
|
||||||
try:
|
|
||||||
vrf_table = body[0]['TABLE_vrf']['ROW_vrf']
|
|
||||||
vrf = vrf_table['vrf-name-out']
|
|
||||||
except KeyError:
|
|
||||||
vrf = None
|
|
||||||
except (KeyError, AttributeError):
|
|
||||||
return {}
|
|
||||||
|
|
||||||
interface = apply_key_map(interface_key, interface_table)
|
|
||||||
interface['interface'] = interface_name
|
|
||||||
interface['type'] = get_interface_type(interface_name)
|
|
||||||
interface['vrf'] = vrf
|
|
||||||
|
|
||||||
if version == 'v4':
|
|
||||||
address = {}
|
|
||||||
address['addr'] = interface_table.get('prefix', None)
|
|
||||||
if address['addr'] is not None:
|
|
||||||
address['mask'] = str(interface_table.get('masklen', None))
|
|
||||||
interface['addresses'] = [address]
|
|
||||||
prefix = "{0}/{1}".format(address['addr'], address['mask'])
|
|
||||||
address_list.append(prefix)
|
|
||||||
else:
|
|
||||||
interface['addresses'] = []
|
|
||||||
|
|
||||||
elif version == 'v6':
|
|
||||||
address_list = interface_table.get('addr', [])
|
|
||||||
interface['addresses'] = []
|
|
||||||
|
|
||||||
if address_list:
|
|
||||||
if not isinstance(address_list, list):
|
|
||||||
address_list = [address_list]
|
|
||||||
|
|
||||||
for ipv6 in address_list:
|
|
||||||
address = {}
|
|
||||||
splitted_address = ipv6.split('/')
|
|
||||||
address['addr'] = splitted_address[0]
|
|
||||||
address['mask'] = splitted_address[1]
|
|
||||||
interface['addresses'].append(address)
|
|
||||||
else:
|
|
||||||
interface['addresses'] = []
|
|
||||||
|
|
||||||
return interface, address_list
|
|
||||||
|
|
||||||
|
|
||||||
def parse_unstructured_data(body, interface_name, module):
|
|
||||||
interface = {}
|
interface = {}
|
||||||
address_list = []
|
interface['addresses'] = []
|
||||||
|
interface['prefixes'] = []
|
||||||
vrf = None
|
vrf = None
|
||||||
|
|
||||||
body = body[0]
|
body = body[0]
|
||||||
if "ipv6 is disabled" not in body.lower():
|
|
||||||
splitted_body = body.split('\n')
|
splitted_body = body.split('\n')
|
||||||
|
|
||||||
|
if version == "v6":
|
||||||
|
if "ipv6 is disabled" not in body.lower():
|
||||||
|
address_list = []
|
||||||
# We can have multiple IPv6 on the same interface.
|
# We can have multiple IPv6 on the same interface.
|
||||||
# We need to parse them manually from raw output.
|
# We need to parse them manually from raw output.
|
||||||
for index in range(0, len(splitted_body) - 1):
|
for index in range(0, len(splitted_body) - 1):
|
||||||
|
@ -283,19 +266,16 @@ def parse_unstructured_data(body, interface_name, module):
|
||||||
first_reference_point = index + 1
|
first_reference_point = index + 1
|
||||||
elif "IPv6 subnet:" in splitted_body[index]:
|
elif "IPv6 subnet:" in splitted_body[index]:
|
||||||
last_reference_point = index
|
last_reference_point = index
|
||||||
prefix_line = splitted_body[last_reference_point]
|
break
|
||||||
prefix = prefix_line.split('IPv6 subnet:')[1].strip()
|
|
||||||
interface['prefix'] = prefix
|
|
||||||
|
|
||||||
interface_list_table = splitted_body[
|
interface_list_table = splitted_body[first_reference_point:last_reference_point]
|
||||||
first_reference_point:last_reference_point]
|
|
||||||
|
|
||||||
for each_line in interface_list_table:
|
for each_line in interface_list_table:
|
||||||
address = each_line.strip().split(' ')[0]
|
address = each_line.strip().split(' ')[0]
|
||||||
if address not in address_list:
|
if address not in address_list:
|
||||||
address_list.append(address)
|
address_list.append(address)
|
||||||
|
interface['prefixes'].append(str(ipaddress.ip_interface(address.decode('utf-8')).network))
|
||||||
|
|
||||||
interface['addresses'] = []
|
|
||||||
if address_list:
|
if address_list:
|
||||||
for ipv6 in address_list:
|
for ipv6 in address_list:
|
||||||
address = {}
|
address = {}
|
||||||
|
@ -304,46 +284,71 @@ def parse_unstructured_data(body, interface_name, module):
|
||||||
address['mask'] = splitted_address[1]
|
address['mask'] = splitted_address[1]
|
||||||
interface['addresses'].append(address)
|
interface['addresses'].append(address)
|
||||||
|
|
||||||
|
else:
|
||||||
|
for index in range(0, len(splitted_body) - 1):
|
||||||
|
if "IP address" in splitted_body[index]:
|
||||||
|
regex = '.*IP\saddress:\s(?P<addr>\d{1,3}(?:\.\d{1,3}){3}),\sIP\ssubnet:' + \
|
||||||
|
'\s\d{1,3}(?:\.\d{1,3}){3}\/(?P<mask>\d+)(?:\s(?P<secondary>secondary)\s)?' + \
|
||||||
|
'.+?tag:\s(?P<tag>\d+).*'
|
||||||
|
match = re.match(regex, splitted_body[index])
|
||||||
|
if match:
|
||||||
|
match_dict = match.groupdict()
|
||||||
|
if match_dict['secondary'] is None:
|
||||||
|
match_dict['secondary'] = False
|
||||||
|
else:
|
||||||
|
match_dict['secondary'] = True
|
||||||
|
match_dict['tag'] = int(match_dict['tag'])
|
||||||
|
interface['addresses'].append(match_dict)
|
||||||
|
prefix = str(ipaddress.ip_interface("{addr}/{mask}".format(**match_dict).decode('utf-8')).network)
|
||||||
|
interface['prefixes'].append(prefix)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
vrf_regex = '.*VRF\s+(?P<vrf>\S+).*'
|
vrf_regex = '.+?VRF\s+(?P<vrf>\S+?)\s'
|
||||||
match_vrf = re.match(vrf_regex, body, re.DOTALL)
|
match_vrf = re.match(vrf_regex, body, re.DOTALL)
|
||||||
group_vrf = match_vrf.groupdict()
|
vrf = match_vrf.groupdict()['vrf']
|
||||||
vrf = group_vrf["vrf"]
|
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
vrf = None
|
vrf = None
|
||||||
|
|
||||||
else:
|
|
||||||
# IPv6's not been configured on this interface yet.
|
|
||||||
interface['addresses'] = []
|
|
||||||
|
|
||||||
interface['interface'] = interface_name
|
interface['interface'] = interface_name
|
||||||
interface['type'] = get_interface_type(interface_name)
|
interface['type'] = get_interface_type(interface_name)
|
||||||
interface['vrf'] = vrf
|
interface['vrf'] = vrf
|
||||||
|
|
||||||
return interface, address_list
|
return interface
|
||||||
|
|
||||||
|
|
||||||
def get_ip_interface(interface_name, version, module):
|
def get_ip_interface(interface_name, version, module):
|
||||||
body = send_show_command(interface_name, version, module)
|
body = send_show_command(interface_name, version, module)
|
||||||
|
interface = parse_unstructured_data(body, interface_name, version, module)
|
||||||
|
|
||||||
# nxapi default response doesn't reflect the actual interface state
|
return interface
|
||||||
# when dealing with IPv6. That's why we need to get raw output instead
|
|
||||||
# and manually parse it.
|
|
||||||
if module.params['transport'] == 'nxapi' and version == 'v6':
|
|
||||||
interface, address_list = parse_unstructured_data(
|
|
||||||
body, interface_name, module)
|
|
||||||
else:
|
|
||||||
interface, address_list = parse_structured_data(
|
|
||||||
body, interface_name, version, module)
|
|
||||||
|
|
||||||
return interface, address_list
|
|
||||||
|
|
||||||
|
|
||||||
def get_remove_ip_config_commands(interface, addr, mask, version):
|
def get_remove_ip_config_commands(interface, addr, mask, existing, version):
|
||||||
commands = []
|
commands = ['interface {0}'.format(interface)]
|
||||||
commands.append('interface {0}'.format(interface))
|
|
||||||
if version == 'v4':
|
if version == 'v4':
|
||||||
commands.append('no ip address')
|
# We can't just remove primary address if secondary address exists
|
||||||
|
for address in existing['addresses']:
|
||||||
|
if address['addr'] == addr:
|
||||||
|
if address['secondary']:
|
||||||
|
commands.append('no ip address {0}/{1} secondary'.format(addr, mask))
|
||||||
|
elif len(existing['addresses']) > 1:
|
||||||
|
new_primary = False
|
||||||
|
for address in existing['addresses']:
|
||||||
|
if address['addr'] != addr:
|
||||||
|
commands.append('no ip address {0}/{1} secondary'.format(address['addr'], address['mask']))
|
||||||
|
|
||||||
|
if not new_primary:
|
||||||
|
command = 'ip address {0}/{1}'.format(address['addr'], address['mask'])
|
||||||
|
new_primary = True
|
||||||
|
else:
|
||||||
|
command = 'ip address {0}/{1} secondary'.format(address['addr'], address['mask'])
|
||||||
|
|
||||||
|
if 'tag' in address and address['tag'] != 0:
|
||||||
|
command += " tag " + str(address['tag'])
|
||||||
|
commands.append(command)
|
||||||
|
else:
|
||||||
|
commands.append('no ip address {0}/{1}'.format(addr, mask))
|
||||||
|
break
|
||||||
else:
|
else:
|
||||||
commands.append('no ipv6 address {0}/{1}'.format(addr, mask))
|
commands.append('no ipv6 address {0}/{1}'.format(addr, mask))
|
||||||
|
|
||||||
|
@ -354,17 +359,40 @@ def get_config_ip_commands(delta, interface, existing, version):
|
||||||
commands = []
|
commands = []
|
||||||
delta = dict(delta)
|
delta = dict(delta)
|
||||||
|
|
||||||
# loop used in the situation that just an IP address or just a
|
|
||||||
# mask is changing, not both.
|
|
||||||
for each in ['addr', 'mask']:
|
|
||||||
if each not in delta:
|
|
||||||
delta[each] = existing[each]
|
|
||||||
|
|
||||||
if version == 'v4':
|
if version == 'v4':
|
||||||
command = 'ip address {addr}/{mask}'.format(**delta)
|
command = 'ip address {addr}/{mask}'.format(**delta)
|
||||||
|
if len(existing['addresses']) > 0:
|
||||||
|
if delta['allow_secondary']:
|
||||||
|
for address in existing['addresses']:
|
||||||
|
if delta['addr'] == address['addr'] and address['secondary'] is False and delta['tag'] != 0:
|
||||||
|
break
|
||||||
else:
|
else:
|
||||||
|
command += ' secondary'
|
||||||
|
else:
|
||||||
|
# Remove all existed addresses if 'allow_secondary' isn't specified
|
||||||
|
for address in existing['addresses']:
|
||||||
|
if address['secondary']:
|
||||||
|
commands.insert(0, 'no ip address {addr}/{mask} secondary'.format(**address))
|
||||||
|
else:
|
||||||
|
commands.append('no ip address {addr}/{mask}'.format(**address))
|
||||||
|
else:
|
||||||
|
if not delta['allow_secondary']:
|
||||||
|
# Remove all existed addresses if 'allow_secondary' isn't specified
|
||||||
|
for address in existing['addresses']:
|
||||||
|
commands.insert(0, 'no ipv6 address {addr}/{mask}'.format(**address))
|
||||||
|
|
||||||
command = 'ipv6 address {addr}/{mask}'.format(**delta)
|
command = 'ipv6 address {addr}/{mask}'.format(**delta)
|
||||||
|
|
||||||
|
if int(delta['tag']) > 0:
|
||||||
|
command += ' tag {tag}'.format(**delta)
|
||||||
|
elif int(delta['tag']) == 0:
|
||||||
|
# Case when we need to remove tag from an address. Just enter command like
|
||||||
|
# 'ip address ...' (without 'tag') not enough
|
||||||
|
commands += get_remove_ip_config_commands(interface, delta['addr'], delta['mask'], existing, version)
|
||||||
|
|
||||||
commands.append(command)
|
commands.append(command)
|
||||||
|
|
||||||
|
if commands[0] != 'interface {0}'.format(interface):
|
||||||
commands.insert(0, 'interface {0}'.format(interface))
|
commands.insert(0, 'interface {0}'.format(interface))
|
||||||
|
|
||||||
return commands
|
return commands
|
||||||
|
@ -380,7 +408,7 @@ def flatten_list(command_lists):
|
||||||
return flat_command_list
|
return flat_command_list
|
||||||
|
|
||||||
|
|
||||||
def validate_params(addr, interface, mask, version, state, intf_type, module):
|
def validate_params(addr, interface, mask, tag, allow_secondary, version, state, intf_type, module):
|
||||||
if state == "present":
|
if state == "present":
|
||||||
if addr is None or mask is None:
|
if addr is None or mask is None:
|
||||||
module.fail_json(msg="An IP address AND a mask must be provided "
|
module.fail_json(msg="An IP address AND a mask must be provided "
|
||||||
|
@ -390,7 +418,7 @@ def validate_params(addr, interface, mask, version, state, intf_type, module):
|
||||||
module.fail_json(msg="IPv6 address and mask must be provided when "
|
module.fail_json(msg="IPv6 address and mask must be provided when "
|
||||||
"state=absent.")
|
"state=absent.")
|
||||||
|
|
||||||
if (intf_type != "ethernet" and module.params["transport"] == "cli"):
|
if intf_type != "ethernet" and module.params["transport"] == "cli":
|
||||||
if is_default(interface, module) == "DNE":
|
if is_default(interface, module) == "DNE":
|
||||||
module.fail_json(msg="That interface does not exist yet. Create "
|
module.fail_json(msg="That interface does not exist yet. Create "
|
||||||
"it first.", interface=interface)
|
"it first.", interface=interface)
|
||||||
|
@ -405,6 +433,27 @@ def validate_params(addr, interface, mask, version, state, intf_type, module):
|
||||||
" 1 and 32 when version v4 and up to 128 "
|
" 1 and 32 when version v4 and up to 128 "
|
||||||
"when version v6.", version=version,
|
"when version v6.", version=version,
|
||||||
mask=mask)
|
mask=mask)
|
||||||
|
if addr is not None and mask is not None:
|
||||||
|
try:
|
||||||
|
ipaddress.ip_interface('{}/{}'.format(addr, mask).decode('utf-8'))
|
||||||
|
except ValueError:
|
||||||
|
module.fail_json(msg="Warning! Invalid ip address or mask set.", addr=addr, mask=mask)
|
||||||
|
|
||||||
|
if tag is not None:
|
||||||
|
try:
|
||||||
|
if 0 > tag > 4294967295:
|
||||||
|
raise ValueError
|
||||||
|
except ValueError:
|
||||||
|
module.fail_json(msg="Warning! 'tag' must be an integer between"
|
||||||
|
" 0 (default) and 4294967295."
|
||||||
|
"To use tag you must set 'addr' and 'mask' params.", tag=tag)
|
||||||
|
if allow_secondary is not None:
|
||||||
|
try:
|
||||||
|
if addr is None or mask is None:
|
||||||
|
raise ValueError
|
||||||
|
except ValueError:
|
||||||
|
module.fail_json(msg="Warning! 'secondary' can be used only when 'addr' and 'mask' set.",
|
||||||
|
allow_secondary=allow_secondary)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
@ -414,8 +463,11 @@ def main():
|
||||||
version=dict(required=False, choices=['v4', 'v6'],
|
version=dict(required=False, choices=['v4', 'v6'],
|
||||||
default='v4'),
|
default='v4'),
|
||||||
mask=dict(type='str', required=False),
|
mask=dict(type='str', required=False),
|
||||||
|
tag=dict(required=False, default=0, type='int'),
|
||||||
state=dict(required=False, default='present',
|
state=dict(required=False, default='present',
|
||||||
choices=['present', 'absent']),
|
choices=['present', 'absent']),
|
||||||
|
allow_secondary=dict(required=False, default=False,
|
||||||
|
type='bool'),
|
||||||
include_defaults=dict(default=True),
|
include_defaults=dict(default=True),
|
||||||
config=dict(),
|
config=dict(),
|
||||||
save=dict(type='bool', default=False)
|
save=dict(type='bool', default=False)
|
||||||
|
@ -426,64 +478,45 @@ def main():
|
||||||
module = AnsibleModule(argument_spec=argument_spec,
|
module = AnsibleModule(argument_spec=argument_spec,
|
||||||
supports_check_mode=True)
|
supports_check_mode=True)
|
||||||
|
|
||||||
|
if not HAS_IPADDRESS:
|
||||||
|
module.fail_json(msg="ipaddress is required for this module. Run 'pip install ipaddress' for install.")
|
||||||
|
|
||||||
warnings = list()
|
warnings = list()
|
||||||
check_args(module, warnings)
|
check_args(module, warnings)
|
||||||
|
|
||||||
|
|
||||||
addr = module.params['addr']
|
addr = module.params['addr']
|
||||||
version = module.params['version']
|
version = module.params['version']
|
||||||
mask = module.params['mask']
|
mask = module.params['mask']
|
||||||
|
tag = module.params['tag']
|
||||||
|
allow_secondary = module.params['allow_secondary']
|
||||||
interface = module.params['interface'].lower()
|
interface = module.params['interface'].lower()
|
||||||
state = module.params['state']
|
state = module.params['state']
|
||||||
|
|
||||||
intf_type = get_interface_type(interface)
|
intf_type = get_interface_type(interface)
|
||||||
validate_params(addr, interface, mask, version, state, intf_type, module)
|
validate_params(addr, interface, mask, tag, allow_secondary, version, state, intf_type, module)
|
||||||
|
|
||||||
mode = get_interface_mode(interface, intf_type, module)
|
mode = get_interface_mode(interface, intf_type, module)
|
||||||
if mode == 'layer2':
|
if mode == 'layer2':
|
||||||
module.fail_json(msg='That interface is a layer2 port.\nMake it '
|
module.fail_json(msg='That interface is a layer2 port.\nMake it '
|
||||||
'a layer 3 port first.', interface=interface)
|
'a layer 3 port first.', interface=interface)
|
||||||
|
|
||||||
existing, address_list = get_ip_interface(interface, version, module)
|
existing = get_ip_interface(interface, version, module)
|
||||||
|
|
||||||
args = dict(addr=addr, mask=mask, interface=interface)
|
args = dict(addr=addr, mask=mask, tag=tag, interface=interface, allow_secondary=allow_secondary)
|
||||||
proposed = dict((k, v) for k, v in args.items() if v is not None)
|
proposed = dict((k, v) for k, v in args.items() if v is not None)
|
||||||
commands = []
|
commands = []
|
||||||
changed = False
|
changed = False
|
||||||
end_state = existing
|
end_state = existing
|
||||||
|
|
||||||
if state == 'absent' and existing['addresses']:
|
if state == 'absent' and existing['addresses']:
|
||||||
if version == 'v6':
|
if find_same_addr(existing, addr, mask):
|
||||||
for address in existing['addresses']:
|
|
||||||
if address['addr'] == addr and address['mask'] == mask:
|
|
||||||
command = get_remove_ip_config_commands(interface, addr,
|
command = get_remove_ip_config_commands(interface, addr,
|
||||||
mask, version)
|
mask, existing, version)
|
||||||
commands.append(command)
|
commands.append(command)
|
||||||
|
|
||||||
else:
|
|
||||||
command = get_remove_ip_config_commands(interface, addr,
|
|
||||||
mask, version)
|
|
||||||
commands.append(command)
|
|
||||||
|
|
||||||
elif state == 'present':
|
elif state == 'present':
|
||||||
if not existing['addresses']:
|
if not find_same_addr(existing, addr, mask, full=True, tag=tag, version=version):
|
||||||
command = get_config_ip_commands(proposed, interface,
|
command = get_config_ip_commands(proposed, interface, existing, version)
|
||||||
existing, version)
|
|
||||||
commands.append(command)
|
commands.append(command)
|
||||||
else:
|
|
||||||
prefix = "{0}/{1}".format(addr, mask)
|
|
||||||
if prefix not in address_list:
|
|
||||||
command = get_config_ip_commands(proposed, interface,
|
|
||||||
existing, version)
|
|
||||||
commands.append(command)
|
|
||||||
else:
|
|
||||||
for address in existing['addresses']:
|
|
||||||
if (address['addr'] == addr and
|
|
||||||
int(address['mask']) != int(mask)):
|
|
||||||
command = get_config_ip_commands(proposed, interface,
|
|
||||||
existing, version)
|
|
||||||
commands.append(command)
|
|
||||||
|
|
||||||
cmds = flatten_list(commands)
|
cmds = flatten_list(commands)
|
||||||
if cmds:
|
if cmds:
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
|
@ -491,8 +524,7 @@ def main():
|
||||||
else:
|
else:
|
||||||
load_config(module, cmds)
|
load_config(module, cmds)
|
||||||
changed = True
|
changed = True
|
||||||
end_state, address_list = get_ip_interface(interface, version,
|
end_state = get_ip_interface(interface, version, module)
|
||||||
module)
|
|
||||||
if 'configure' in cmds:
|
if 'configure' in cmds:
|
||||||
cmds.pop(0)
|
cmds.pop(0)
|
||||||
|
|
||||||
|
@ -509,4 +541,3 @@ def main():
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
||||||
|
|
|
@ -504,7 +504,6 @@ lib/ansible/modules/network/nxos/nxos_igmp_snooping.py
|
||||||
lib/ansible/modules/network/nxos/nxos_install_os.py
|
lib/ansible/modules/network/nxos/nxos_install_os.py
|
||||||
lib/ansible/modules/network/nxos/nxos_interface.py
|
lib/ansible/modules/network/nxos/nxos_interface.py
|
||||||
lib/ansible/modules/network/nxos/nxos_interface_ospf.py
|
lib/ansible/modules/network/nxos/nxos_interface_ospf.py
|
||||||
lib/ansible/modules/network/nxos/nxos_ip_interface.py
|
|
||||||
lib/ansible/modules/network/nxos/nxos_ntp.py
|
lib/ansible/modules/network/nxos/nxos_ntp.py
|
||||||
lib/ansible/modules/network/nxos/nxos_ntp_auth.py
|
lib/ansible/modules/network/nxos/nxos_ntp_auth.py
|
||||||
lib/ansible/modules/network/nxos/nxos_ntp_options.py
|
lib/ansible/modules/network/nxos/nxos_ntp_options.py
|
||||||
|
|
Loading…
Reference in New Issue