cisco.meraki.meraki_ms_stack_l3_interface module – Manage routed interfaces on MS switches
Note
This module is part of the cisco.meraki collection (version 2.17.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.meraki
.
To use it in a playbook, specify: cisco.meraki.meraki_ms_stack_l3_interface
.
DEPRECATED
- Removed in:
version 3.0.0
- Why:
Updated modules released with increased functionality
- Alternative:
cisco.meraki.networks_switch_stacks_routing_interfaces
Synopsis
Allows for creation, management, and visibility into routed interfaces on Meraki MS switches.
Parameters
Parameter |
Comments |
---|---|
Authentication key provided by the dashboard. Required if environmental variable |
|
The next hop for any traffic that isn’t going to a directly connected subnet or over a static route. This IP address must exist in a subnet with a routed interface. |
|
Hostname for Meraki dashboard. Can be used to access regional Meraki environments, such as China. Default: |
|
Uniqiue identification number for layer 3 interface. |
|
The IP address this switch will use for layer 3 routing on this VLAN or subnet. This cannot be the same as the switch’s management IP. |
|
Number of seconds to retry if server returns an internal server error. Default: |
|
Enable multicast support if multicast routing between VLANs is required. Choices:
|
|
A friendly name or description for the interface or VLAN. |
|
ID of network which configuration is applied to. |
|
Name of network which configuration is applied to. |
|
ID of organization. |
|
Name of organization. |
|
The OSPF routing settings of the interface. |
|
The OSPF area to which this interface should belong. Can be either ‘disabled’ or the identifier of an existing OSPF area. |
|
The path cost for this interface. |
|
When enabled, OSPF will not run on the interface, but the subnet will still be advertised. Choices:
|
|
Instructs module whether response keys should be snake case (ex. Choices:
|
|
Set amount of debug output during module execution. Choices:
|
|
Number of seconds to retry if rate limiter is triggered. Default: |
|
The unique identifier of the stack. |
|
Create or modify an organization. Choices:
|
|
The network that this routed interface is on, in CIDR notation. |
|
Time to timeout for HTTP requests. Default: |
|
If Only useful for internal Meraki developers. Choices:
|
|
If Choices:
|
|
Whether to validate HTTP certificates. Choices:
|
|
The VLAN this routed interface is on. VLAN must be between 1 and 4094. |
Notes
Note
Once a layer 3 interface is created, the API does not allow updating the interface and specifying
default_gateway
.More information about the Meraki API can be found at https://dashboard.meraki.com/api_docs.
Some of the options are likely only used for developers within Meraki.
As of Ansible 2.9, Meraki modules output keys as snake case. To use camel case, set the
ANSIBLE_MERAKI_FORMAT
environment variable tocamelcase
.Ansible’s Meraki modules will stop supporting camel case output in Ansible 2.13. Please update your playbooks.
Check Mode downloads the current configuration from the dashboard, then compares changes against this download. Check Mode will report changed if there are differences in the configurations, but does not submit changes to the API for validation of change.
Examples
- name: Query all l3 interfaces
meraki_ms_stack_l3_interface:
auth_key: abc123
state: query
serial: aaa-bbb-ccc
- name: Query one l3 interface
meraki_ms_stack_l3_interface:
auth_key: abc123
state: query
serial: aaa-bbb-ccc
name: Test L3 interface
- name: Create l3 interface
meraki_ms_stack_l3_interface:
auth_key: abc123
state: present
serial: aaa-bbb-ccc
name: "Test L3 interface 2"
subnet: "192.168.3.0/24"
interface_ip: "192.168.3.2"
multicast_routing: disabled
vlan_id: 11
ospf_settings:
area: 0
cost: 1
is_passive_enabled: true
- name: Update l3 interface
meraki_ms_stack_l3_interface:
auth_key: abc123
state: present
serial: aaa-bbb-ccc
name: "Test L3 interface 2"
subnet: "192.168.3.0/24"
interface_ip: "192.168.3.2"
multicast_routing: disabled
vlan_id: 11
ospf_settings:
area: 0
cost: 2
is_passive_enabled: true
- name: Delete l3 interface
meraki_ms_stack_l3_interface:
auth_key: abc123
state: absent
serial: aaa-bbb-ccc
interface_id: abc123344566
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Information about the layer 3 interfaces. Returned: success |
|
The next hop for any traffic that isn’t going to a directly connected subnet or over a static route. Returned: success Sample: |
|
Uniqiue identification number for layer 3 interface. Returned: success Sample: |
|
The IP address this switch will use for layer 3 routing on this VLAN or subnet. Returned: success Sample: |
|
Enable multicast support if multicast routing between VLANs is required. Returned: success Sample: |
|
A friendly name or description for the interface or VLAN. Returned: success Sample: |
|
The OSPF routing settings of the interface. Returned: success |
|
The OSPF area to which this interface should belong. Returned: success Sample: |
|
The path cost for this interface. Returned: success Sample: |
|
When enabled, OSPF will not run on the interface, but the subnet will still be advertised. Returned: success Sample: |
|
The network that this routed interface is on, in CIDR notation. Returned: success Sample: |
|
The VLAN this routed interface is on. Returned: success Sample: |
Status
This module will be removed in version 3.0.0. [deprecated]
For more information see DEPRECATED.