dellemc.enterprise_sonic.sonic_vlan_mapping module – Configure vlan mappings on SONiC.
Note
This module is part of the dellemc.enterprise_sonic collection (version 2.5.1).
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 dellemc.enterprise_sonic
.
To use it in a playbook, specify: dellemc.enterprise_sonic.sonic_vlan_mapping
.
New in dellemc.enterprise_sonic 2.1.0
Synopsis
- This module provides configuration management for vlan mappings on devices running SONiC.
- Vlan mappings only available on TD3 and TD4 devices.
- For TD4 devices must enable vlan mapping first (can enable in config-switch-resource).
Parameters
Parameter | Comments |
---|---|
config list / elements=dictionary | Specifies the vlan mapping related configurations. |
mapping list / elements=dictionary |
Defining a single vlan mapping. |
dot1q_tunnel boolean |
Specify whether it is a vlan stacking or translation (false means translation; true means stacking). Choices:
|
inner_vlan integer |
Configure inner customer VLAN ID. VLAN IDs range is 1-4094. Only available for double tagged translations. |
priority integer |
Set priority level of the vlan mapping. Priority range is 0-7. |
service_vlan integer / required |
Configure service provider VLAN ID. VLAN ID range is 1-4094. |
vlan_ids list / elements=string |
Configure customer VLAN IDs. If mode is double tagged translation then this VLAN ID represents the outer VLAN ID. If mode is set to stacking can pass ranges and/or multiple list entries. Individual VLAN ID or (-) separated range of VLAN IDs. |
name string / required |
Full name of the interface, i.e. Ethernet8, PortChannel2, Eth1/2. |
state string | Specifies the operation to be performed on the vlan mappings configured on the device. In case of merged, the input configuration will be merged with the existing vlan mappings on the device. In case of deleted, the existing vlan mapping configuration will be removed from the device. In case of overridden, all existing vlan mappings will be deleted and the specified input configuration will be add. In case of replaced, the existing vlan mappings on the device will be replaced by the configuration for each vlan mapping. Choices:
|
Examples
# Using deleted # # Before State: # ------------- # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 623 2411 # switchport vlan-mapping 392 inner 590 2755 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 400-402,404,406,408,410,412,420,422,430-432 dot1q-tunnel 2436 priority 3 # switchport vlan-mapping 300 dot1q-tunnel 2567 priority 3 #! - name: Delete vlan mapping configurations sonic_vlan_mapping: config: - name: Ethernet8 mapping: - service_vlan: 2755 - name: Ethernet16 mapping: - service_vlan: 2567 priority: 3 - service_vlan: 2436 vlan_ids: - 404 - 401 - 412 - 430-431 priority: 3 state: deleted # After State: # ------------ # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 623 2411 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 400,402,406,408,410,420,422,432 dot1q-tunnel 2436 # switchport vlan-mapping 300 dot1q-tunnel 2567 #! # Using deleted # # Before State: # ------------- # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 623 2411 # switchport vlan-mapping 392 inner 590 2755 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 400-402,404,406,408,410,412,420,422,430-431 dot1q-tunnel 2436 # switchport vlan-mapping 300 dot1q-tunnel 2567 priority 3 #! - name: Delete vlan mapping configurations sonic_vlan_mapping: config: - name: Ethernet8 - name: Ethernet16 mapping: - service_vlan: 2567 state: deleted # After State: # ------------ # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdo#! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 400-402,406,408,410,420,422,431 dot1q-tunnel 2436 #! # Using merged # # Before State: # ------------- # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 623 2411 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown #! #interface PortChannel 2 # switchport vlan-mapping 345 2999 priority 0 # switchport vlan-mapping 500,540 dot1q-tunnel 3000 # no shutdown #! - name: Add vlan mapping configurations sonic_vlan_mapping: config: - name: Ethernet8 mapping: - service_vlan: 2755 vlan_ids: - 392 dot1q_tunnel: false inner_vlan: 590 - name: Ethernet16 mapping: - service_vlan: 2567 vlan_ids: - 300 dot1q_tunnel: true priority: 3 - service_vlan: 2436 vlan_ids: - 400-402 - 404 - 406 - 408 - 410 - 412 - 420 - 422 - 430-431 dot1q_tunnel: true - name: Portchannel 2 mapping: - service_vlan: 2999 priority: 4 - service_vlan: 3000 vlan_ids: - 506-512 - 561 priority: 5 state: merged # After State: # ------------ # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 623 2411 # switchport vlan-mapping 392 inner 590 2755 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 400-402,404,406,408,410,412,420,422,430-431 dot1q-tunnel 2436 # switchport vlan-mapping 300 dot1q-tunnel 2567 priority 3 #! #interface PortChannel 2 # switchport vlan-mapping 345 2999 priority 4 # switchport vlan-mapping 500,506-512,540,561 dot1q-tunnel 3000 priority 5 # no shutdown #! # Using replaced # # Before State: # ------------- # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 623 2411 # switchport vlan-mapping 392 inner 590 2755 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 400-402,404,406,408,410,412,420,422,430-431 dot1q-tunnel 2436 # switchport vlan-mapping 300 dot1q-tunnel 2567 priority 3 #! #interface PortChannel 2 # switchport vlan-mapping 345 2999 priority 0 # no shutdown #! - name: Replace vlan mapping configurations sonic_vlan_mapping: config: - name: Ethernet8 mapping: - service_vlan: 2755 vlan_ids: - 390 dot1q_tunnel: false inner_vlan: 593 - name: Ethernet16 mapping: - service_vlan: 2567 vlan_ids: - 310 - 330-340 priority: 5 - name: Portchannel 2 mapping: - service_vlan: 2999 vlan_ids: - 345 dot1q_tunnel: true priority: 1 state: replaced # After State: # ------------ # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 623 2411 # switchport vlan-mapping 390 inner 593 2755 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 400-402,404,406,408,410,412,420,422,430-431 dot1q-tunnel 2436 # switchport vlan-mapping 310,330-340 dot1q-tunnel 2567 priority 5 #! #interface PortChannel 2 # switchport vlan-mapping 345 dot1q_tunnel 2999 priority 1 # no shutdown #! # Using overridden # # Before State: # ------------- # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 623 2411 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 400-402,404,406,408,410,412,420,422,430-431 dot1q-tunnel 2436 #! - name: Override the vlan mapping configurations sonic_vlan_mapping: config: - name: Ethernet8 mapping: - service_vlan: 2755 vlan_ids: - 392 dot1q_tunnel: false inner_vlan: 590 - name: Ethernet16 mapping: - service_vlan: 2567 vlan_ids: - 300 dot1q_tunnel: true priority: 3 - name: Portchannel 2 mapping: - service_vlan: 2999 vlan_ids: - 345 priority: 0 state: overridden # After State: # ------------ # #sonic# show running-configuration interface #! #interface Ethernet8 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 392 inner 590 2755 #! #interface Ethernet16 # mtu 9100 # speed 400000 # fec RS # unreliable-los auto # shutdown # switchport vlan-mapping 300 dot1q-tunnel 2567 priority 3 #! #interface PortChannel 2 # switchport vlan-mapping 345 2999 priority 0 # no shutdown #!
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
---|---|
after list / elements=string | The resulting configuration module invocation. Returned: when changed Sample: |
before list / elements=string | The configuration prior to the module invocation. Returned: always Sample: |
commands list / elements=string | The set of commands pushed to the remote device. Returned: always Sample: |
Collection links
© 2012–2018 Michael DeHaan
© 2018–2024 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/dellemc/enterprise_sonic/sonic_vlan_mapping_module.html