EMAIL SUPPORT

dclessons@dclessons.com

LOCATION

US

Configuring Bridging & IRB

Configuring Bridging & IRB ( Configuring Viptela Switching )

In the configuring Viptela Switching , Let’s see how to configure the Bridge Domain and How BD are marked with VLAN tag or untagged.

Create a Bridge Domain with VLAN Tagging

When a BD is tagged with VLAN, the packet sent by domain, this VLAN ID is inserted in frame.

This tagging helps vEdge router to determine which interface it should send broadcast packet.

Now to configure BD with VLAN tag, first create the BD and assign the VLAN tag to this domain and further associate an interface on to it.

Create a bridging domain:

vEdge(config)# bridge bridge-id

Tag the bridging domain with a VLAN ID: range is 1 to 4095

vEdge(config-bridge)# vlan number

Associate an interface with the bridging domain, and enable that interface ( only physical interface and not sub-interface )

vEdge(config-bridge)# interface geslot/port
vEdge(config-interface)# no shutdown

Once physical interface is added to VLAN , following are the optional parameters.

Configure a description for the VLAN interface, to help identify the interface in operational command output:

vEdge(config-bridge)# interface geslot/port
vEdge(config-interface)# description "text description"

Configure a static MAC address for the VLAN interface:

vEdge(config-interface)# static-mac-address aa:bb:cc:dd:ee:ff

Configure a name for the VLAN, to help identify the VLAN in operational command output:

vEdge(config-bridge)# name "text description"

By default , a bridge domain can only learn up to 1024 MAC address , but this range can be modified to 4096.

vEdge(config-bridge)# max-macs number

By default, MAC table entries age out after 300 seconds (5 minutes). You can modify this to a value from 10 through 4096 seconds:

vEdge(config-bridge)# age-time seconds

Here is an example configuration:

vEdge# config
vEdge(config)# bridge 3
vEdge(bridge-2)# vlan 37
vEdge(bridge-2)# interface ge0/2
vEdge(interface-ge0-4)# no shutdown
vEdge(interface-ge0-4)# description "VLAN tag = 37"
vEdge(interface-ge0/4)# commit and-quit
vEdge# show running-config bridge
bridge 3
vlan 37
interface ge0/2
description "VLAN tag = 37"
no native-vlan
no shutdown
!
!
vEdge#

Once an interface is configured in BD then to add or change the VLAN ID for that BD, DB must be deleted and then reconfigure the domain with correct VLAN ID.

To see which interface Bridging is working:

vEdge# show bridge interface

Create a Bridge Domain with an Untagged VLAN

When a BD is not tagged with any VLAN, all frame sent from this BD is sent untagged.

GENERAL FAQ

This section explains how bridging works in Viptela SD-WAN. You will learn how to create a Bridge Domain, how VLAN-tagged and untagged bridging behaves, and how interfaces are associated so that traffic is switched properly within the vEdge router. It builds the foundation for understanding Layer 2 switching and IRB concepts.

If a Bridge Domain is configured with a VLAN ID, the router inserts that VLAN tag into outgoing frames. This VLAN tag helps the vEdge router identify the correct broadcast domain and forward traffic to the appropriate interface. It also ensures proper traffic separation between different bridge domains.

Tagged Bridge Domain traffic carries a VLAN ID in the Ethernet frame, which is used for VLAN-based segmentation. In untagged mode, frames are transmitted without any VLAN tag. Tagged mode is used when VLAN segmentation is required, while untagged mode is used for simple Layer 2 forwarding without VLAN separation.

By default, a Bridge Domain can learn up to 1024 MAC addresses. This limit can be increased to 4096 if required. MAC table entries age out after 300 seconds (5 minutes) by default, unless this timer is modified. This mechanism ensures that the MAC table remains updated and prevents stale entries from affecting switching decisions.

No. Once a Bridge Domain is configured and associated with interfaces, the VLAN ID cannot be modified directly. The Bridge Domain must be deleted and recreated with the correct VLAN configuration to avoid inconsistent switching behavior.

This page provides a foundational understanding of Bridging and VLAN behavior in Viptela SD-WAN. For advanced topics such as IRB routing, real-world deployment scenarios, MAC scaling design, and hands-on configuration practice, you can explore the complete course available on the DCLessons platform.

Comment

    You are will be the first.

LEAVE A COMMENT

Please login here to comment.