cisco.meraki.meraki_ms_l3_interface – Manage routed interfaces on MS switches¶
Note
This plugin is part of the cisco.meraki collection (version 2.2.1).
To install it use: ansible-galaxy collection install cisco.meraki
.
To use it in a playbook, specify: cisco.meraki.meraki_ms_l3_interface
.
Synopsis¶
Allows for creation, management, and visibility into routed interfaces on Meraki MS switches.
Parameters¶
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_l3_interface:
auth_key: abc123
state: query
serial: aaa-bbb-ccc
- name: Query one l3 interface
meraki_ms_l3_interface:
auth_key: abc123
state: query
serial: aaa-bbb-ccc
name: Test L3 interface
- name: Create l3 interface
meraki_ms_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_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_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:
Authors¶
Kevin Breit (@kbreit)