blob: e6883ea759e0ac27383d5e70052864cadaeeb7b7 (
plain)
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
|
---
requires_ansible: '>=2.9.10,<2.11'
plugin_routing:
action:
nxos_aaa_server:
redirect: cisco.nxos.nxos
aaa_server:
redirect: cisco.nxos.nxos
nxos_aaa_server_host:
redirect: cisco.nxos.nxos
aaa_server_host:
redirect: cisco.nxos.nxos
nxos_acl:
redirect: cisco.nxos.nxos
acl:
redirect: cisco.nxos.nxos
nxos_acl_interface:
redirect: cisco.nxos.nxos
acl_interface:
redirect: cisco.nxos.nxos
nxos_acl_interfaces:
redirect: cisco.nxos.nxos
acl_interfaces:
redirect: cisco.nxos.nxos
nxos_acls:
redirect: cisco.nxos.nxos
acls:
redirect: cisco.nxos.nxos
nxos_banner:
redirect: cisco.nxos.nxos
banner:
redirect: cisco.nxos.nxos
nxos_bfd_global:
redirect: cisco.nxos.nxos
bfd_global:
redirect: cisco.nxos.nxos
nxos_bfd_interfaces:
redirect: cisco.nxos.nxos
bfd_interfaces:
redirect: cisco.nxos.nxos
nxos_bgp:
redirect: cisco.nxos.nxos
bgp:
redirect: cisco.nxos.nxos
nxos_bgp_af:
redirect: cisco.nxos.nxos
bgp_af:
redirect: cisco.nxos.nxos
nxos_bgp_neighbor:
redirect: cisco.nxos.nxos
bgp_neighbor:
redirect: cisco.nxos.nxos
nxos_bgp_neighbor_af:
redirect: cisco.nxos.nxos
bgp_neighbor_af:
redirect: cisco.nxos.nxos
nxos_command:
redirect: cisco.nxos.nxos
command:
redirect: cisco.nxos.nxos
nxos_config:
redirect: cisco.nxos.nxos
config:
redirect: cisco.nxos.nxos
nxos_devicealias:
redirect: cisco.nxos.nxos
devicealias:
redirect: cisco.nxos.nxos
nxos_evpn_global:
redirect: cisco.nxos.nxos
evpn_global:
redirect: cisco.nxos.nxos
nxos_evpn_vni:
redirect: cisco.nxos.nxos
evpn_vni:
redirect: cisco.nxos.nxos
nxos_facts:
redirect: cisco.nxos.nxos
facts:
redirect: cisco.nxos.nxos
nxos_feature:
redirect: cisco.nxos.nxos
feature:
redirect: cisco.nxos.nxos
nxos_gir:
redirect: cisco.nxos.nxos
gir:
redirect: cisco.nxos.nxos
nxos_gir_profile_management:
redirect: cisco.nxos.nxos
gir_profile_management:
redirect: cisco.nxos.nxos
nxos_hsrp:
redirect: cisco.nxos.nxos
hsrp:
redirect: cisco.nxos.nxos
nxos_hsrp_interfaces:
redirect: cisco.nxos.nxos
hsrp_interfaces:
redirect: cisco.nxos.nxos
nxos_igmp:
redirect: cisco.nxos.nxos
igmp:
redirect: cisco.nxos.nxos
nxos_igmp_interface:
redirect: cisco.nxos.nxos
igmp_interface:
redirect: cisco.nxos.nxos
nxos_igmp_snooping:
redirect: cisco.nxos.nxos
igmp_snooping:
redirect: cisco.nxos.nxos
nxos_install_os:
redirect: cisco.nxos.nxos
install_os:
redirect: cisco.nxos.nxos
nxos_interface:
redirect: cisco.nxos.nxos
interface:
redirect: cisco.nxos.nxos
nxos_interface_ospf:
redirect: cisco.nxos.nxos
interface_ospf:
redirect: cisco.nxos.nxos
nxos_interfaces:
redirect: cisco.nxos.nxos
interfaces:
redirect: cisco.nxos.nxos
nxos_l2_interface:
redirect: cisco.nxos.nxos
l2_interface:
redirect: cisco.nxos.nxos
nxos_l2_interfaces:
redirect: cisco.nxos.nxos
l2_interfaces:
redirect: cisco.nxos.nxos
nxos_l3_interface:
redirect: cisco.nxos.nxos
l3_interface:
redirect: cisco.nxos.nxos
nxos_l3_interfaces:
redirect: cisco.nxos.nxos
l3_interfaces:
redirect: cisco.nxos.nxos
nxos_lacp:
redirect: cisco.nxos.nxos
lacp:
redirect: cisco.nxos.nxos
nxos_lacp_interfaces:
redirect: cisco.nxos.nxos
lacp_interfaces:
redirect: cisco.nxos.nxos
nxos_lag_interfaces:
redirect: cisco.nxos.nxos
lag_interfaces:
redirect: cisco.nxos.nxos
nxos_linkagg:
redirect: cisco.nxos.nxos
linkagg:
redirect: cisco.nxos.nxos
nxos_lldp:
redirect: cisco.nxos.nxos
lldp:
redirect: cisco.nxos.nxos
nxos_lldp_global:
redirect: cisco.nxos.nxos
lldp_global:
redirect: cisco.nxos.nxos
nxos_lldp_interfaces:
redirect: cisco.nxos.nxos
lldp_interfaces:
redirect: cisco.nxos.nxos
nxos_logging:
redirect: cisco.nxos.nxos
logging:
redirect: cisco.nxos.nxos
nxos_ntp:
redirect: cisco.nxos.nxos
ntp:
redirect: cisco.nxos.nxos
nxos_ntp_auth:
redirect: cisco.nxos.nxos
ntp_auth:
redirect: cisco.nxos.nxos
nxos_ntp_options:
redirect: cisco.nxos.nxos
ntp_options:
redirect: cisco.nxos.nxos
nxos_nxapi:
redirect: cisco.nxos.nxos
nxapi:
redirect: cisco.nxos.nxos
nxos_ospf_interfaces:
redirect: cisco.nxos.nxos
ospf_interfaces:
redirect: cisco.nxos.nxos
nxos_ospf:
redirect: cisco.nxos.nxos
ospf:
redirect: cisco.nxos.nxos
nxos_ospf_vrf:
redirect: cisco.nxos.nxos
ospf_vrf:
redirect: cisco.nxos.nxos
nxos_bgp_global:
redirect: cisco.nxos.nxos
bgp_global:
redirect: cisco.nxos.nxos
nxos_ospfv2:
redirect: cisco.nxos.nxos
ospfv2:
redirect: cisco.nxos.nxos
nxos_ospfv3:
redirect: cisco.nxos.nxos
ospfv3:
redirect: cisco.nxos.nxos
nxos_overlay_global:
redirect: cisco.nxos.nxos
overlay_global:
redirect: cisco.nxos.nxos
nxos_pim:
redirect: cisco.nxos.nxos
pim:
redirect: cisco.nxos.nxos
nxos_pim_interface:
redirect: cisco.nxos.nxos
pim_interface:
redirect: cisco.nxos.nxos
nxos_pim_rp_address:
redirect: cisco.nxos.nxos
pim_rp_address:
redirect: cisco.nxos.nxos
nxos_ping:
redirect: cisco.nxos.nxos
ping:
redirect: cisco.nxos.nxos
nxos_reboot:
redirect: cisco.nxos.nxos
reboot:
redirect: cisco.nxos.nxos
nxos_rollback:
redirect: cisco.nxos.nxos
rollback:
redirect: cisco.nxos.nxos
nxos_rpm:
redirect: cisco.nxos.nxos
rpm:
redirect: cisco.nxos.nxos
nxos_smu:
redirect: cisco.nxos.nxos
smu:
redirect: cisco.nxos.nxos
nxos_snapshot:
redirect: cisco.nxos.nxos
snapshot:
redirect: cisco.nxos.nxos
nxos_snmp_community:
redirect: cisco.nxos.nxos
snmp_community:
redirect: cisco.nxos.nxos
nxos_snmp_contact:
redirect: cisco.nxos.nxos
snmp_contact:
redirect: cisco.nxos.nxos
nxos_snmp_host:
redirect: cisco.nxos.nxos
snmp_host:
redirect: cisco.nxos.nxos
nxos_snmp_location:
redirect: cisco.nxos.nxos
snmp_location:
redirect: cisco.nxos.nxos
nxos_snmp_traps:
redirect: cisco.nxos.nxos
snmp_traps:
redirect: cisco.nxos.nxos
nxos_snmp_user:
redirect: cisco.nxos.nxos
snmp_user:
redirect: cisco.nxos.nxos
nxos_static_route:
redirect: cisco.nxos.nxos
static_route:
redirect: cisco.nxos.nxos
nxos_static_routes:
redirect: cisco.nxos.nxos
static_routes:
redirect: cisco.nxos.nxos
nxos_system:
redirect: cisco.nxos.nxos
system:
redirect: cisco.nxos.nxos
nxos_telemetry:
redirect: cisco.nxos.nxos
telemetry:
redirect: cisco.nxos.nxos
nxos_udld:
redirect: cisco.nxos.nxos
udld:
redirect: cisco.nxos.nxos
nxos_udld_interface:
redirect: cisco.nxos.nxos
udld_interface:
redirect: cisco.nxos.nxos
nxos_user:
redirect: cisco.nxos.nxos
user:
redirect: cisco.nxos.nxos
nxos_vlan:
redirect: cisco.nxos.nxos
vlan:
redirect: cisco.nxos.nxos
nxos_vlans:
redirect: cisco.nxos.nxos
vlans:
redirect: cisco.nxos.nxos
nxos_vpc:
redirect: cisco.nxos.nxos
vpc:
redirect: cisco.nxos.nxos
nxos_vpc_interface:
redirect: cisco.nxos.nxos
vpc_interface:
redirect: cisco.nxos.nxos
nxos_vrf:
redirect: cisco.nxos.nxos
vrf:
redirect: cisco.nxos.nxos
nxos_vrf_af:
redirect: cisco.nxos.nxos
vrf_af:
redirect: cisco.nxos.nxos
nxos_vrf_interface:
redirect: cisco.nxos.nxos
vrf_interface:
redirect: cisco.nxos.nxos
nxos_vrrp:
redirect: cisco.nxos.nxos
vrrp:
redirect: cisco.nxos.nxos
nxos_vsan:
redirect: cisco.nxos.nxos
vsan:
redirect: cisco.nxos.nxos
nxos_vtp_domain:
redirect: cisco.nxos.nxos
vtp_domain:
redirect: cisco.nxos.nxos
nxos_vtp_password:
redirect: cisco.nxos.nxos
vtp_password:
redirect: cisco.nxos.nxos
nxos_vtp_version:
redirect: cisco.nxos.nxos
vtp_version:
redirect: cisco.nxos.nxos
nxos_vxlan_vtep:
redirect: cisco.nxos.nxos
vxlan_vtep:
redirect: cisco.nxos.nxos
nxos_vxlan_vtep_vni:
redirect: cisco.nxos.nxos
vxlan_vtep_vni:
redirect: cisco.nxos.nxos
nxos_zone_zoneset:
redirect: cisco.nxos.nxos
zone_zoneset:
redirect: cisco.nxos.nxos
modules:
aaa_server:
redirect: cisco.nxos.nxos_aaa_server
aaa_server_host:
redirect: cisco.nxos.nxos_aaa_server_host
acl:
redirect: cisco.nxos.nxos_acl
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_acl:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
acl_interface:
redirect: cisco.nxos.nxos_acl_interface
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_acl_interface:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
acl_interfaces:
redirect: cisco.nxos.nxos_acl_interfaces
acls:
redirect: cisco.nxos.nxos_acls
banner:
redirect: cisco.nxos.nxos_banner
bfd_global:
redirect: cisco.nxos.nxos_bfd_global
bfd_interfaces:
redirect: cisco.nxos.nxos_bfd_interfaces
bgp:
redirect: cisco.nxos.nxos_bgp
deprecation:
removal_date: '2023-01-27'
warning_text: See the plugin documentation for more details
nxos_bgp:
deprecation:
removal_date: '2023-01-27'
warning_text: See the plugin documentation for more details
bgp_af:
redirect: cisco.nxos.nxos_bgp_af
bgp_neighbor:
redirect: cisco.nxos.nxos_bgp_neighbor
deprecation:
removal_date: '2023-01-27'
warning_text: See the plugin documentation for more details
nxos_bgp_neighbor:
deprecation:
removal_date: '2023-01-27'
warning_text: See the plugin documentation for more details
bgp_neighbor_af:
redirect: cisco.nxos.nxos_bgp_neighbor_af
command:
redirect: cisco.nxos.nxos_command
config:
redirect: cisco.nxos.nxos_config
devicealias:
redirect: cisco.nxos.nxos_devicealias
evpn_global:
redirect: cisco.nxos.nxos_evpn_global
evpn_vni:
redirect: cisco.nxos.nxos_evpn_vni
facts:
redirect: cisco.nxos.nxos_facts
feature:
redirect: cisco.nxos.nxos_feature
file_copy:
redirect: cisco.nxos.nxos_file_copy
gir:
redirect: cisco.nxos.nxos_gir
gir_profile_management:
redirect: cisco.nxos.nxos_gir_profile_management
hsrp:
redirect: cisco.nxos.nxos_hsrp
hsrp_interfaces:
redirect: cisco.nxos.nxos_hsrp_interfaces
igmp:
redirect: cisco.nxos.nxos_igmp
igmp_interface:
redirect: cisco.nxos.nxos_igmp_interface
igmp_snooping:
redirect: cisco.nxos.nxos_igmp_snooping
install_os:
redirect: cisco.nxos.nxos_install_os
interface:
redirect: cisco.nxos.nxos_interface
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_interface:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
interface_ospf:
redirect: cisco.nxos.nxos_interface_ospf
deprecation:
removal_date: '2022-10-26'
warning_text: See the plugin documentation for more details
nxos_interface_ospf:
deprecation:
removal_date: '2022-10-26'
warning_text: See the plugin documentation for more details
interfaces:
redirect: cisco.nxos.nxos_interfaces
l2_interface:
redirect: cisco.nxos.nxos_l2_interface
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_l2_interface:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
l2_interfaces:
redirect: cisco.nxos.nxos_l2_interfaces
l3_interface:
redirect: cisco.nxos.nxos_l3_interface
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_l3_interface:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
l3_interfaces:
redirect: cisco.nxos.nxos_l3_interfaces
lacp:
redirect: cisco.nxos.nxos_lacp
lacp_interfaces:
redirect: cisco.nxos.nxos_lacp_interfaces
lag_interfaces:
redirect: cisco.nxos.nxos_lag_interfaces
linkagg:
redirect: cisco.nxos.nxos_linkagg
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_linkagg:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
lldp:
redirect: cisco.nxos.nxos_lldp
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_lldp:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
lldp_global:
redirect: cisco.nxos.nxos_lldp_global
lldp_interfaces:
redirect: cisco.nxos.nxos_lldp_interfaces
logging:
redirect: cisco.nxos.nxos_logging
ntp:
redirect: cisco.nxos.nxos_ntp
ntp_auth:
redirect: cisco.nxos.nxos_ntp_auth
ntp_options:
redirect: cisco.nxos.nxos_ntp_options
nxapi:
redirect: cisco.nxos.nxos_nxapi
ospf_interfaces:
redirect: cisco.nxos.nxos_ospf_interfaces
ospf:
redirect: cisco.nxos.nxos_ospf
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_ospf:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
ospf_vrf:
redirect: cisco.nxos.nxos_ospf_vrf
deprecation:
removal_date: '2022-10-01'
warning_text: See the plugin documentation for more details
nxos_ospf_vrf:
deprecation:
removal_date: '2022-10-01'
warning_text: See the plugin documentation for more details
bgp_global:
redirect: cisco.nxos.nxos_bgp_global
ospfv2:
redirect: cisco.nxos.nxos_ospfv2
ospfv3:
redirect: cisco.nxos.nxos_ospfv3
overlay_global:
redirect: cisco.nxos.nxos_overlay_global
pim:
redirect: cisco.nxos.nxos_pim
pim_interface:
redirect: cisco.nxos.nxos_pim_interface
pim_rp_address:
redirect: cisco.nxos.nxos_pim_rp_address
ping:
redirect: cisco.nxos.nxos_ping
reboot:
redirect: cisco.nxos.nxos_reboot
rollback:
redirect: cisco.nxos.nxos_rollback
rpm:
redirect: cisco.nxos.nxos_rpm
smu:
redirect: cisco.nxos.nxos_smu
deprecation:
removal_date: '2022-10-01'
warning_text: See the plugin documentation for more details
nxos_smu:
deprecation:
removal_date: '2022-10-01'
warning_text: See the plugin documentation for more details
snapshot:
redirect: cisco.nxos.nxos_snapshot
snmp_community:
redirect: cisco.nxos.nxos_snmp_community
snmp_contact:
redirect: cisco.nxos.nxos_snmp_contact
snmp_host:
redirect: cisco.nxos.nxos_snmp_host
snmp_location:
redirect: cisco.nxos.nxos_snmp_location
snmp_traps:
redirect: cisco.nxos.nxos_snmp_traps
snmp_user:
redirect: cisco.nxos.nxos_snmp_user
static_route:
redirect: cisco.nxos.nxos_static_route
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_static_route:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
static_routes:
redirect: cisco.nxos.nxos_static_routes
system:
redirect: cisco.nxos.nxos_system
telemetry:
redirect: cisco.nxos.nxos_telemetry
udld:
redirect: cisco.nxos.nxos_udld
udld_interface:
redirect: cisco.nxos.nxos_udld_interface
user:
redirect: cisco.nxos.nxos_user
vlan:
redirect: cisco.nxos.nxos_vlan
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
nxos_vlan:
deprecation:
removal_date: '2022-06-01'
warning_text: See the plugin documentation for more details
vlans:
redirect: cisco.nxos.nxos_vlans
vpc:
redirect: cisco.nxos.nxos_vpc
vpc_interface:
redirect: cisco.nxos.nxos_vpc_interface
vrf:
redirect: cisco.nxos.nxos_vrf
vrf_af:
redirect: cisco.nxos.nxos_vrf_af
vrf_interface:
redirect: cisco.nxos.nxos_vrf_interface
vrrp:
redirect: cisco.nxos.nxos_vrrp
vsan:
redirect: cisco.nxos.nxos_vsan
vtp_domain:
redirect: cisco.nxos.nxos_vtp_domain
vtp_password:
redirect: cisco.nxos.nxos_vtp_password
vtp_version:
redirect: cisco.nxos.nxos_vtp_version
vxlan_vtep:
redirect: cisco.nxos.nxos_vxlan_vtep
vxlan_vtep_vni:
redirect: cisco.nxos.nxos_vxlan_vtep_vni
zone_zoneset:
redirect: cisco.nxos.nxos_zone_zoneset
|