1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
#!/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/>.
#
from __future__ import absolute_import, division, print_function
__metaclass__ = type
DOCUMENTATION = """
module: nxos_igmp_snooping
extends_documentation_fragment:
- cisco.nxos.nxos
short_description: Manages IGMP snooping global configuration.
description:
- Manages IGMP snooping global configuration.
version_added: 1.0.0
author:
- Jason Edelman (@jedelman8)
- Gabriele Gerbino (@GGabriele)
notes:
- Tested against NXOSv 7.3.(0)D1(1) on VIRL
- Unsupported for Cisco MDS
- When C(state=default), params will be reset to a default state.
- C(group_timeout) also accepts I(never) as an input.
options:
snooping:
description:
- Enables/disables IGMP snooping on the switch.
type: bool
group_timeout:
description:
- Group membership timeout value for all VLANs on the device. Accepted values
are integer in range 1-10080, I(never) and I(default).
type: str
link_local_grp_supp:
description:
- Global link-local groups suppression.
type: bool
report_supp:
description:
- Global IGMPv1/IGMPv2 Report Suppression.
type: bool
v3_report_supp:
description:
- Global IGMPv3 Report Suppression and Proxy Reporting.
type: bool
state:
description:
- Manage the state of the resource.
default: present
choices:
- present
- default
type: str
"""
EXAMPLES = """
# ensure igmp snooping params supported in this module are in there default state
- cisco.nxos.nxos_igmp_snooping:
state: default
# ensure following igmp snooping params are in the desired state
- cisco.nxos.nxos_igmp_snooping:
group_timeout: never
snooping: true
link_local_grp_supp: false
optimize_mcast_flood: false
report_supp: true
v3_report_supp: true
"""
RETURN = """
commands:
description: command sent to the device
returned: always
type: list
sample: ["ip igmp snooping link-local-groups-suppression",
"ip igmp snooping group-timeout 50",
"no ip igmp snooping report-suppression",
"no ip igmp snooping v3-report-suppression",
"no ip igmp snooping"]
"""
import re
from ansible.module_utils.basic import AnsibleModule
from ansible_collections.cisco.nxos.plugins.module_utils.network.nxos.nxos import (
load_config,
run_commands,
)
def execute_show_command(command, module, output="text"):
command = {"command": command, "output": output}
return run_commands(module, [command])
def flatten_list(command_lists):
flat_command_list = []
for command in command_lists:
if isinstance(command, list):
flat_command_list.extend(command)
else:
flat_command_list.append(command)
return flat_command_list
def get_group_timeout(config):
match = re.search(r" Group timeout configured: (\S+)", config, re.M)
if match:
value = match.group(1)
else:
value = ""
return value
def get_igmp_snooping(module):
command = "show ip igmp snooping"
existing = {}
try:
body = execute_show_command(command, module, output="json")[0]
except IndexError:
body = []
if body:
snooping = str(body.get("enabled")).lower()
if "none" in snooping:
snooping = str(body.get("GlobalSnoopEnabled")).lower()
if snooping == "true" or snooping == "enabled" or snooping == "yes":
existing["snooping"] = True
else:
existing["snooping"] = False
report_supp = str(body.get("grepsup")).lower()
if "none" in report_supp:
report_supp = str(body.get("GlobalReportSupression")).lower()
if report_supp == "true" or report_supp == "enabled":
existing["report_supp"] = True
else:
existing["report_supp"] = False
link_local_grp_supp = str(body.get("glinklocalgrpsup")).lower()
if "none" in link_local_grp_supp:
link_local_grp_supp = str(body.get("GlobalLinkLocalGroupSupression")).lower()
if link_local_grp_supp == "true" or link_local_grp_supp == "enabled":
existing["link_local_grp_supp"] = True
else:
existing["link_local_grp_supp"] = False
v3_report_supp = str(body.get("gv3repsup")).lower()
if "none" in v3_report_supp:
v3_report_supp = str(body.get("GlobalV3ReportSupression")).lower()
if v3_report_supp == "true" or v3_report_supp == "enabled":
existing["v3_report_supp"] = True
else:
existing["v3_report_supp"] = False
command = "show ip igmp snooping"
body = execute_show_command(command, module)[0]
if body:
existing["group_timeout"] = get_group_timeout(body)
return existing
def config_igmp_snooping(delta, existing, default=False):
CMDS = {
"snooping": "ip igmp snooping",
"group_timeout": "ip igmp snooping group-timeout {}",
"link_local_grp_supp": "ip igmp snooping link-local-groups-suppression",
"v3_report_supp": "ip igmp snooping v3-report-suppression",
"report_supp": "ip igmp snooping report-suppression",
}
commands = []
command = None
gt_command = None
for key, value in delta.items():
if value:
if default and key == "group_timeout":
if existing.get(key):
gt_command = "no " + CMDS.get(key).format(existing.get(key))
elif value == "default" and key == "group_timeout":
if existing.get(key):
command = "no " + CMDS.get(key).format(existing.get(key))
else:
command = CMDS.get(key).format(value)
else:
command = "no " + CMDS.get(key).format(value)
if command:
commands.append(command)
command = None
if gt_command:
# ensure that group-timeout command is configured last
commands.append(gt_command)
return commands
def get_igmp_snooping_defaults():
group_timeout = "dummy"
report_supp = True
link_local_grp_supp = True
v3_report_supp = False
snooping = True
args = dict(
snooping=snooping,
link_local_grp_supp=link_local_grp_supp,
report_supp=report_supp,
v3_report_supp=v3_report_supp,
group_timeout=group_timeout,
)
default = dict((param, value) for (param, value) in args.items() if value is not None)
return default
def igmp_snooping_gt_dependency(command, existing, module):
# group-timeout will fail if igmp snooping is disabled
gt = [i for i in command if i.startswith("ip igmp snooping group-timeout")]
if gt:
if "no ip igmp snooping" in command or (
existing["snooping"] is False and "ip igmp snooping" not in command
):
msg = "group-timeout cannot be enabled or changed when ip igmp snooping is disabled"
module.fail_json(msg=msg)
else:
# ensure that group-timeout command is configured last
command.remove(gt[0])
command.append(gt[0])
def main():
argument_spec = dict(
snooping=dict(required=False, type="bool"),
group_timeout=dict(required=False, type="str"),
link_local_grp_supp=dict(required=False, type="bool"),
report_supp=dict(required=False, type="bool"),
v3_report_supp=dict(required=False, type="bool"),
state=dict(choices=["present", "default"], default="present"),
)
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True)
warnings = list()
results = {"changed": False, "commands": [], "warnings": warnings}
snooping = module.params["snooping"]
link_local_grp_supp = module.params["link_local_grp_supp"]
report_supp = module.params["report_supp"]
v3_report_supp = module.params["v3_report_supp"]
group_timeout = module.params["group_timeout"]
state = module.params["state"]
args = dict(
snooping=snooping,
link_local_grp_supp=link_local_grp_supp,
report_supp=report_supp,
v3_report_supp=v3_report_supp,
group_timeout=group_timeout,
)
proposed = dict((param, value) for (param, value) in args.items() if value is not None)
existing = get_igmp_snooping(module)
commands = []
if state == "present":
delta = dict(set(proposed.items()).difference(existing.items()))
if delta:
command = config_igmp_snooping(delta, existing)
if command:
if group_timeout:
igmp_snooping_gt_dependency(command, existing, module)
commands.append(command)
elif state == "default":
proposed = get_igmp_snooping_defaults()
delta = dict(set(proposed.items()).difference(existing.items()))
if delta:
command = config_igmp_snooping(delta, existing, default=True)
if command:
commands.append(command)
cmds = flatten_list(commands)
if cmds:
results["changed"] = True
if not module.check_mode:
load_config(module, cmds)
if "configure" in cmds:
cmds.pop(0)
results["commands"] = cmds
module.exit_json(**results)
if __name__ == "__main__":
main()
|