Note
This plugin is part of the cisco.meraki collection.
To install it use: ansible-galaxy collection install cisco.meraki.
To use it in a playbook, specify: cisco.meraki.meraki_mx_l2_interface.
New in version 2.1.0: of cisco.meraki
| Parameter | Choices/Defaults | Comments |
|---|---|---|
| access_policy string |
| The name of the policy. Only applicable to access ports. |
| allowed_vlans string | Comma-delimited list of the VLAN ID's allowed on the port, or 'all' to permit all VLAN's on the port. | |
| auth_key string / required | Authentication key provided by the dashboard. Required if environmental variable MERAKI_KEY is not set. | |
| drop_untagged_traffic boolean |
| Trunk port can Drop all Untagged traffic. When true, no VLAN is required. Access ports cannot have dropUntaggedTraffic set to true. |
| enabled boolean |
| Enabled state of port. |
| host string | Default: "api.meraki.com" | Hostname for Meraki dashboard. Can be used to access regional Meraki environments, such as China. |
| internal_error_retry_time integer | Default: 60 | Number of seconds to retry if server returns an internal server error. |
| net_id string | ID number of a network. | |
| net_name string | Name of a network. aliases: name, network | |
| number integer | ID number of MX port. aliases: port, port_id | |
| org_id string | ID of organization associated to a network. | |
| org_name string | Name of organization. aliases: organization | |
| output_format string |
| Instructs module whether response keys should be snake case (ex. net_id) or camel case (ex. netId). |
| output_level string |
| Set amount of debug output during module execution. |
| port_type string |
| Type of port. |
| rate_limit_retry_time integer | Default: 165 | Number of seconds to retry if rate limiter is triggered. |
| state string |
| Modify or query an port. |
| timeout integer | Default: 30 | Time to timeout for HTTP requests. |
| use_https boolean |
| If no, it will use HTTP. Otherwise it will use HTTPS.Only useful for internal Meraki developers. |
| use_proxy boolean |
| If no, it will not use a proxy, even if one is defined in an environment variable on the target hosts. |
| validate_certs boolean |
| Whether to validate HTTP certificates. |
| vlan integer | Native VLAN when the port is in Trunk mode. Access VLAN when the port is in Access mode. |
Note
ANSIBLE_MERAKI_FORMAT environment variable to camelcase.- name: Query layer 2 interface settings
meraki_mx_l2_interface:
auth_key: abc123
org_name: YourOrg
net_name: YourNet
state: query
delegate_to: localhost
- name: Query a single layer 2 interface settings
meraki_mx_l2_interface:
auth_key: abc123
org_name: YourOrg
net_name: YourNet
state: query
number: 2
delegate_to: localhost
- name: Update interface configuration
meraki_mx_l2_interface:
auth_key: abc123
org_name: YourOrg
net_name: YourNet
state: present
number: 2
port_type: access
vlan: 10
delegate_to: localhost
Common return values are documented here, the following are the fields unique to this module:
| Key | Returned | Description | |
|---|---|---|---|
| data complex | success | Information about the created or manipulated object. | |
| access_policy string | success | The name of the policy. Only applicable to access ports. Sample: guestUsers | |
| allowed_vlans string | success | Comma-delimited list of the VLAN ID's allowed on the port, or 'all' to permit all VLAN's on the port. Sample: 1,5,10 | |
| drop_untagged_traffic boolean | success | Trunk port can Drop all Untagged traffic. When true, no VLAN is required. Access ports cannot have dropUntaggedTraffic set to true. Sample: True | |
| enabled boolean | success | Enabled state of port. Sample: True | |
| number integer | success | ID number of MX port. Sample: 4 | |
| type string | success | Type of port. Sample: access | |
| vlan integer | success | Native VLAN when the port is in Trunk mode. Access VLAN when the port is in Access mode. Sample: 1 | |
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/cisco/meraki/meraki_mx_l2_interface_module.html