Note
This module is part of the cisco.meraki collection (version 2.21.4).
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_mx_uplink_bandwidth.
New in cisco.meraki 1.1.0
version 3.0.0
Updated modules released with increased functionality
cisco.meraki.networks_appliance_traffic_shaping_uplink_bandwidth
Parameter | Comments |
|---|---|
auth_key string / required | Authentication key provided by the dashboard. Required if environmental variable |
cellular dictionary | Configuration of cellular uplink |
|
bandwidth_limits dictionary |
Structure for configuring bandwidth limits |
|
limit_down integer |
Maximum download speed for interface |
|
limit_up integer |
Maximum upload speed for interface |
host string | Hostname for Meraki dashboard. Can be used to access regional Meraki environments, such as China. Default: |
internal_error_retry_time integer | Number of seconds to retry if server returns an internal server error. Default: |
net_id string | ID of network which VLAN is in or should be in. |
net_name aliases: network string | Name of network which VLAN is in or should be in. |
org_id string | ID of organization associated to a network. |
org_name aliases: organization string | Name of organization associated to a network. |
output_format string | Instructs module whether response keys should be snake case (ex. Choices:
|
output_level string | Set amount of debug output during module execution. Choices:
|
rate_limit_retry_time integer | Number of seconds to retry if rate limiter is triggered. Default: |
state string | Specifies whether object should be queried, created/modified, or removed. Choices:
|
timeout integer | Time to timeout for HTTP requests. Default: |
use_https boolean | If Only useful for internal Meraki developers. Choices:
|
use_proxy boolean | If Choices:
|
validate_certs boolean | Whether to validate HTTP certificates. Choices:
|
wan1 dictionary | Configuration of WAN1 uplink |
|
bandwidth_limits dictionary |
Structure for configuring bandwidth limits |
|
limit_down integer |
Maximum download speed for interface |
|
limit_up integer |
Maximum upload speed for interface |
wan2 dictionary | Configuration of WAN2 uplink |
|
bandwidth_limits dictionary |
Structure for configuring bandwidth limits |
|
limit_down integer |
Maximum download speed for interface |
|
limit_up integer |
Maximum upload speed for interface |
Note
ANSIBLE_MERAKI_FORMAT environment variable to camelcase.- name: Set MX uplink settings
meraki_mx_uplink_bandwidth:
auth_key: '{{ auth_key }}'
state: present
org_name: '{{ test_org_name }}'
net_name: '{{ test_net_name }} - Uplink'
wan1:
bandwidth_limits:
limit_down: 1000000
limit_up: 1000
cellular:
bandwidth_limits:
limit_down: 0
limit_up: 0
delegate_to: localhost
- name: Query MX uplink settings
meraki_mx_uplink_bandwidth:
auth_key: '{{ auth_key }}'
state: query
org_name: '{{ test_org_name }}'
net_name: '{{ test_net_name }} - Uplink'
delegate_to: localhost
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
data complex | Information about the organization which was created or modified Returned: success |
|
cellular complex |
cellular interface Returned: success |
|
bandwidth_limits complex |
Structure for uplink bandwidth limits Returned: success |
|
limit_down integer |
Download bandwidth limit Returned: success |
|
limit_up integer |
Upload bandwidth limit Returned: success |
|
wan1 complex |
WAN1 interface Returned: success |
|
bandwidth_limits complex |
Structure for uplink bandwidth limits Returned: success |
|
limit_down integer |
Download bandwidth limit Returned: success |
|
limit_up integer |
Upload bandwidth limit Returned: success |
|
wan2 complex |
WAN2 interface Returned: success |
|
bandwidth_limits complex |
Structure for uplink bandwidth limits Returned: success |
|
limit_down integer |
Download bandwidth limit Returned: success |
|
limit_up integer |
Upload bandwidth limit Returned: success |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/cisco/meraki/meraki_mx_uplink_bandwidth_module.html