cisco.mso.ndo_mcp_global_policy module – Manage the MCP Global Policy in a Fabric Policy Template on Cisco Nexus Dashboard Orchestrator (NDO).
Note
This module is part of the cisco.mso collection (version 2.10.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install cisco.mso
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: cisco.mso.ndo_mcp_global_policy
.
Synopsis
Manage the MisCabling Protocol (MCP) Global Policy in a Fabric Policy Template on Cisco Nexus Dashboard Orchestrator (NDO).
There can only be a single MCP Global Policy in a Fabric Policy Template.
This module is only supported on ND v3.1 (NDO v4.3) and later.
Requirements
The below requirements are needed on the host that executes this module.
Multi Site Orchestrator v2.1 or newer
Parameters
Parameter |
Comments |
---|---|
The administrative state of the MCP Global Policy. Defaults to Choices:
|
|
The description of the MCP Global Policy. Providing an empty string will remove the |
|
IP Address or hostname of the ACI Multi Site Orchestrator host. If the value is not specified in the task, the value of environment variable |
|
The MCP initial delay time in seconds. Defaults to 180 when unset during creation. The value must be between 0 and 1800. |
|
The key of the MCP Global Policy. |
|
The login domain name to use for authentication. The default value is Local. If the value is not specified in the task, the value of environment variable When using a HTTPAPI connection plugin the inventory variable |
|
The amount of MCP packets that will be received before port disable loop protection action takes place. Defaults to 3 when unset during creation. The value must be between 1 and 255. |
|
The name of the MCP Global Policy. |
|
Influence the output of this MSO module.
If the value is not specified in the task, the value of environment variable Choices:
|
|
The password to use for authentication. If the value is not specified in the task, the value of environment variables |
|
When enabled MCP will send packets on a per End Point Group (EPG) basis. If disabled, the packets will only be sent on untagged EPGs which allows detecting loops in the native VLAN only. Defaults to Choices:
|
|
Port number to be used for the REST connection. The default value depends on parameter `use_ssl`. If the value is not specified in the task, the value of environment variable |
|
Enable or disable port disabling when MCP packets are received. Defaults to Choices:
|
|
Use Use Use Choices:
|
|
The name of the template. The template must be a Fabric Policy template. |
|
The socket level timeout in seconds. The default value is 30 seconds. If the value is not specified in the task, the value of environment variable |
|
The MCP transmission frequency in milliseconds. Defaults to 0 when unset during creation. The value must be between 0 and 999. |
|
The MCP transmission frequency in seconds. Defaults to 2 when unset during creation. The value must be between 0 and 300. |
|
If If the value is not specified in the task, the value of environment variable The default is Choices:
|
|
If If the value is not specified in the task, the value of environment variable When using a HTTPAPI connection plugin the inventory variable The default is Choices:
|
|
The username to use for authentication. If the value is not specified in the task, the value of environment variables |
|
The UUID of the MCP Global Policy. |
|
If This should only set to If the value is not specified in the task, the value of environment variable The default is Choices:
|
Notes
Note
The
template
must exist before using this module in your playbook. Use cisco.mso.ndo_template to create the Fabric Policy template.Attempts to create any additional MCP Global Policies will only update the existing object in the Fabric Policy template.
This module was written to support Multi Site Orchestrator v2.1 or newer. Some or all functionality may not work on earlier versions.
See Also
See also
- cisco.mso.ndo_template
Manage Templates on Cisco Nexus Dashboard Orchestrator (NDO).
Examples
- name: Create the MCP Global Policy object
cisco.mso.ndo_mcp_global_policy:
host: mso_host
username: admin
password: SomeSecretPassword
template: fabric_template
name: example_mcp_global_policy
state: present
register: mcp_global_policy_new
- name: Create the MCP Global Policy object with all attributes
cisco.mso.ndo_mcp_global_policy:
host: mso_host
username: admin
password: SomeSecretPassword
template: fabric_template
name: example_mcp_global_policy
description: A Global MCP Policy
key: cisco
admin_state: enabled
per_vlan: enabled
loop_detection_factor: 3
port_disable: enabled
initial_delay_time: 180
transmission_frequency_sec: 2
transmission_frequency_msec: 10
state: present
register: mcp_global_policy_all
- name: Update the MCP Global Policy object with UUID
cisco.mso.ndo_mcp_global_policy:
host: mso_host
username: admin
password: SomeSecretPassword
template: fabric_template
name: mcp_global_policy_update
uuid: "{{ mcp_global_policy_all.current.uuid }}"
state: present
- name: Query the MCP Global Policy object with name
cisco.mso.ndo_mcp_global_policy:
host: mso_host
username: admin
password: SomeSecretPassword
template: fabric_template
name: example_mcp_global_policy
state: query
register: query_name
- name: Query the MCP Global Policy object with UUID
cisco.mso.ndo_mcp_global_policy:
host: mso_host
username: admin
password: SomeSecretPassword
template: fabric_template
uuid: "{{ mcp_global_policy_all.current.uuid }}"
state: query
register: query_uuid
- name: Query the MCP Global Policy object in a Fabric Template
cisco.mso.ndo_mcp_global_policy:
host: mso_host
username: admin
password: SomeSecretPassword
template: fabric_template
state: query
register: query_all
- name: Delete the MCP Global Policy object with name
cisco.mso.ndo_mcp_global_policy:
host: mso_host
username: admin
password: SomeSecretPassword
template: fabric_template
name: example_mcp_global_policy
state: absent
- name: Delete the MCP Global Policy object with UUID
cisco.mso.ndo_mcp_global_policy:
host: mso_host
username: admin
password: SomeSecretPassword
template: fabric_template
uuid: "{{ mcp_global_policy_all.current.uuid }}"
state: absent