Troubleshoot Bridge Virtual Interface & Bridge Domain Interface (2024)

    Introduction

    This document describes how to understand and troubleshoot the Bridge Virtual Interface (BVI) and the Bridge Domain Interface (BDI).

    Prerequisites

    Requirements

    There are no requirements for this article.

    Components Used

    The information in this document is based on ISR router (for BVI) and ASR1K (for BDI).

    The information in this document was created from the devices in a specific lab environment. All of the devices used in this document started with a cleared (default) configuration. If your network is live, ensure that you understand the potential impact of any command.

    Background Information

    BVI and BDI routed interfaces represent a set of interfaces that are bridged. For example, you want to bridge two interfaces on the router, and you want them to be in the same Layer-2 broadcast domain. The BVI/BDI interface would act as the routed interface for those two bridged physical interfaces. All the packet traffic must pass through the BVI/BDI interfaces.

    Troubleshoot Bridge Virtual Interface & Bridge Domain Interface (1)BVI Connection for 2 PCs to Routers

    BVI on Cisco IOS®

    A router does not configure two or more Layer-3 interfaces in the same broadcast domain (that is, two or more interfaces in the same subnet). Use the BVI interface to connect two PCs to the router as part of the same subnet and still have Internetaccess from both the PCs.

    You can use BVI to do this.

    Term

    Definition

    Bridge-group

    Groups the physical interfaces into one logical group.

    Interface BVI

    A Layer-3 that can be routed,logical interface.

    ISR 3

    ISR 1

    ISR 2

    bridge irb

    bridge 1 protocol ieee

    bridge 1 route ip

    !

    interface GigabitEthernet0/0/1

    bridge-group 1

    !

    interface GigabitEthernet0/0/2

    bridge-group 1

    !

    interface BVI 1

    ip address 10.10.10.10

    255.255.255.0

    int fa0/0

    ip address 10.10.10.1

    255.255.255.0

    int fa0/0

    ip address 10.10.10.2

    255.255.255.0

    BDI on Cisco IOSXE

    BDI is similar to BVI except that it runs on Cisco IOS XE.

    Term

    Definition

    Bridge domain

    Represents a Layer 2 broadcast domain.

    Bridge domain interface

    Is a logical interface that allows bidirectional flow of traffic between a Layer-2 bridged network and a Layer-3 routed network.

    Ethernet Virtual Circuit (EVC)

    Is an end-to-end representation of a single instance of a Layer-2 service offered by a provider to a customer. In the Cisco EVC Framework, the bridge domains are made up of one or more Layer-2 interfaces known as Service Instances. A Service Instance is the instantiation of an EVC on a given port on a given router. Service instance is associated with a bridge domain based on the configuration.

    Troubleshoot Bridge Virtual Interface & Bridge Domain Interface (2)ASR Connection on Two Switches

    BDI on Cisco IOSXE Platform Examples

    A) Fa0/1 on both the switches are Layer-3 interfaces and are in the same broadcast domain.

    BDI configuration on ASR isnot requiredif the motive is to just establish connectivity between the two switches.

    ASR 1K

    SW1

    SW2

    interface GigabitEthernet1/2/3

    no ip address

    negotiation auto

    cdp enable

    service instance 100 ethernet

    encapsulation untagged

    bridge-domain 100

    !

    interface GigabitEthernet1/2/4

    no ip address

    negotiation auto

    cdp enable

    service instance 100 ethernet

    encapsulation untagged

    bridge-domain 100

    interface FastEthernet0/1

    no switchport

    ip address 10.1.1.1 255.255.255.0

    interface FastEthernet0/1

    no switchport

    ip address 10.1.1.3 255.255.255.0

    Next Steps

    1. Ping SW2 from SW1:

    BGL.Q.16-3500-1#ping 10.1.1.3

    2. Type escape sequence to abort.

    Sending 5, 100-byte ICMP Echos to 10.1.1.3, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 1/4/9 ms

    Note: If you want to route outside of the ASR, BDI interface configuration is required:

    interface BDI100ip address 10.1.1.1 255.255.255.0

    B) Bridge multiple VLANs between the two switches.

    Configure separate Ethernet virtual circuits (EVC) under the physical interface for each of the VLANs. Bridge-domain is not supported under the sub-interface.

    There are two VLANs;VLAN100 and VLAN200 to be bridged:

    ASR 1K

    SW1

    SW2

    interface GigabitEthernet1/2/3

    no ip address

    negotiation auto

    cdp enable

    service instance 100 ethernet

    encapsulation dot1q 100

    rewrite ingress tag pop 1 symmetric

    bridge-domain 100

    !

    service instance 200 ethernet

    encapsulation dot1q 200

    rewrite ingress tag pop 1 symmetric

    bridge-domain 200

    Exact same config under Gig1/2/4

    interface GigabitEthernet1/2/4

    no ip address

    negotiation auto

    cdp enable

    service instance 100 ethernet

    encapsulation dot1q 100

    rewrite ingress tag pop 1 symmetric

    bridge-domain 100

    !

    service instance 200 ethernet

    encapsulation dot1q 200

    rewrite ingress tag pop 1 symmetric

    bridge-domain 200

    interface FastEthernet0/1

    switchport trunk encapsulation dot1q

    switchport mode trunk

    interface Vlan100

    ip address 10.1.1.1 255.255.255.0

    interface Vlan200

    ip address 10.1.1.2 255.255.255.0

    interface FastEthernet0/1

    switchport trunk encapsulation dot1q

    switchport mode trunk

    interface Vlan100

    ip address 10.1.1.3 255.255.255.0

    interface Vlan200

    ip address 10.1.1.2 255.255.255.0

    Next Steps

    1. Ping int vlan100 and vlan200 on SW2 from SW1:

    BGL.Q.16-3500-1#ping 10.1.1.3

    2. Type escape sequence to abort:

    Sending 5, 100-byte ICMP Echos to 10.1.1.3, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 1/4/9 msBGL.Q.16-3500-1#ping 10.1.1.3

    3. Type escape sequence to abort:

    Sending 5, 100-byte ICMP Echos to 10.1.1.3, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/9 ms

    EPC

    monitor capture CAP interface gig1/2/3 efp 100 both match ipv4 any any

    Packet Tracer

    debug platform condition interface gig1/2/3 efp-id 100 ipv4 bothEFP ID = 100 (service instance number)

    Related Information

    Troubleshoot Bridge Virtual Interface & Bridge Domain Interface (2024)

    FAQs

    What is a bridged virtual interface? ›

    Bridging virtual network interfaces allows a virtual interface to connect to an outside network through a physical interface, such as Ethernet or Thunderbolt, making it appear as a normal host to the rest of the network. Note: You can't use bridging if the physical network device used for bridging is a wireless device.

    What is a bridge domain interface? ›

    Bridge domain interface. Is a logical interface that allows bidirectional flow of traffic between a Layer-2 bridged network and a Layer-3 routed network.

    What is the difference between bridge group and bridge domain? ›

    A Bridge Group is essentially a Layer 2 domain where you can group together a set of related endpoints. Bridge Domain Interfaces (BDIs) and Bridged Virtual Interfaces (BVIs) are both concepts related to Bridge Groups.

    What is the difference between bridge domain and VLAN? ›

    A bridge domain is a set of logical ports that share the same flooding or broadcast characteristics. Like a virtual LAN (VLAN), a bridge domain spans one or more ports of multiple devices.

    How to bridge two network interfaces? ›

    To bridge two or more network interfaces, we need to identify their names or interface identifiers. In this example, we could bridge the eth0 and eth1 interfaces by creating a bridge interface named br0 and adding eth0 and eth1, as shown in the examples later.

    What does a bridge interface do? ›

    The bridge interfaces send traffic with Layer 2 addressing. On the same device, you can configure some interfaces as bridge interfaces, while other interfaces work as Layer 3 interfaces. Traffic between bridge interfaces is inspected at Layer 2.

    What is the difference between bridge domain and VRF? ›

    The bridge domain defines the unique Layer 2 MAC address space and a Layer 2 flood domain if such flooding is enabled. While a VRF instance defines a unique IP address space, that address space can consist of multiple subnets.

    What are two types of network bridges? ›

    There are generally two types of Bridges in Computer networks: Transparent Bridge. Source-Route Bridge.

    What is a bridge group interface? ›

    A bridge group is a virtual interface that groups one or more interfaces. The main reason to group interfaces is to create a group of switched interfaces. Thus, you can attach workstations or other endpoint devices directly to the interfaces included in the bridge group.

    What is the difference between VLAN and virtual bridge? ›

    Bridging divides a single physical LAN (now called a single broadcast domain) into two or more virtual LANs, or VLANs. Each VLAN is a collection of some of the LAN nodes grouped together to form individual broadcast domains.

    What's the difference between VLAN and interface? ›

    The VLAN is based on the 802.1Q VLAN, to achieve network isolation, but currently the controller cannot set up the PVID, so in fact this option is not useful at this moment. The Interface can provide more options such as set up DHCP range, and devices in different IP range can communicate with each other.

    What is the difference between bridge domain and VNI? ›

    Summary: VNI is a VXLAN-specific identifier for traffic segregation in VXLAN overlays. Bridge domains are broader, used for Layer 2 forwarding and isolation in various network virtualization technologies.

    What is a BVI interface? ›

    Each bridge group includes a Bridge Virtual Interface (BVI). The threat defense device uses the BVI IP address as the source address for packets originating from the bridge group. The BVI IP address must be on the same subnet as the bridge group member interfaces.

    What is a bridged VM? ›

    Bridge mode allows your VM to act as its own device on your network, with its own IP address. This is beneficial if you're running services or applications that require direct network access, or if you want to mimic a real network environment.

    What is the difference between VLAN and BVI? ›

    BVI can replace Vlan interfaces. So instead of having a Vlan interface that routes packets (coming from acces port attached to that vlan number) that needs to be routed outside the vlan, the BVI does the same thing, routing packets outside de layer 2 domain from L2 interfaces that are bridged to that BVI.

    Top Articles
    Vibrant colors increase appetite in fish
    10 Methods to Fix HDMI Port Not Working on Laptop [2024]
    Pet For Sale Craigslist
    Uca Cheerleading Nationals 2023
    Cintas Pay Bill
    Inducement Small Bribe
    Fat Hog Prices Today
    Recent Obituaries Patriot Ledger
    Optum Medicare Support
    Gina's Pizza Port Charlotte Fl
    Power Outage Map Albany Ny
    Slushy Beer Strain
    Oc Craiglsit
    Marion County Wv Tax Maps
    Studentvue Columbia Heights
    How to find cash from balance sheet?
    Mineral Wells Independent School District
    How do I get into solitude sewers Restoring Order? - Gamers Wiki
    O'Reilly Auto Parts - Mathis, TX - Nextdoor
    Optum Urgent Care - Nutley Photos
    Ac-15 Gungeon
    Home
    South Bend Weather Underground
    Dr. Nicole Arcy Dvm Married To Husband
    Safeway Aciu
    Trinket Of Advanced Weaponry
    O'reilly's In Monroe Georgia
    Pdx Weather Noaa
    Craigslist Texas Killeen
    Western Gold Gateway
    Top-ranked Wisconsin beats Marquette in front of record volleyball crowd at Fiserv Forum. What we learned.
    Pitchfork's Top 200 of the 2010s: 50-1 (clips)
    How To Get Soul Reaper Knife In Critical Legends
    The Thing About ‘Dateline’
    Www Craigslist Com Brooklyn
    Deshuesadero El Pulpo
    Mixer grinder buying guide: Everything you need to know before choosing between a traditional and bullet mixer grinder
    2700 Yen To Usd
    Craigslist Putnam Valley Ny
    Skyward Marshfield
    The Realreal Temporary Closure
    Torrid Rn Number Lookup
    Login
    Florida Lottery Powerball Double Play
    Egg Inc Wiki
    Nfl Espn Expert Picks 2023
    Who We Are at Curt Landry Ministries
    All Obituaries | Roberts Funeral Home | Logan OH funeral home and cremation
    Lux Nails & Spa
    Latest Posts
    Article information

    Author: Sen. Ignacio Ratke

    Last Updated:

    Views: 5933

    Rating: 4.6 / 5 (76 voted)

    Reviews: 83% of readers found this page helpful

    Author information

    Name: Sen. Ignacio Ratke

    Birthday: 1999-05-27

    Address: Apt. 171 8116 Bailey Via, Roberthaven, GA 58289

    Phone: +2585395768220

    Job: Lead Liaison

    Hobby: Lockpicking, LARPing, Lego building, Lapidary, Macrame, Book restoration, Bodybuilding

    Introduction: My name is Sen. Ignacio Ratke, I am a adventurous, zealous, outstanding, agreeable, precious, excited, gifted person who loves writing and wants to share my knowledge and understanding with you.