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
    What Is A Piggyback Loan? | Quicken Loans
    Storage and upload limits for Google Workspace
    No Hard Feelings Showtimes Near Metropolitan Fiesta 5 Theatre
    Washu Parking
    Instructional Resources
    The UPS Store | Ship & Print Here > 400 West Broadway
    The Daily News Leader from Staunton, Virginia
    Comforting Nectar Bee Swarm
    Globe Position Fault Litter Robot
    Craigslist Estate Sales Tucson
    Best Pawn Shops Near Me
    What is a basic financial statement?
    4Chan Louisville
    Bjork & Zhulkie Funeral Home Obituaries
    Vcuapi
    Craigslist Mpls Cars And Trucks
    2015 Honda Fit EX-L for sale - Seattle, WA - craigslist
    Minecraft Jar Google Drive
    Pac Man Deviantart
    Telegram Scat
    Weather Rotterdam - Detailed bulletin - Free 15-day Marine forecasts - METEO CONSULT MARINE
    No Hard Feelings - Stream: Jetzt Film online anschauen
    Welcome to GradeBook
    CDL Rostermania 2023-2024 | News, Rumors & Every Confirmed Roster
    VERHUURD: Barentszstraat 12 in 'S-Gravenhage 2518 XG: Woonhuis.
    We Discovered the Best Snow Cone Makers for Carnival-Worthy Desserts
    Doctors of Optometry - Westchester Mall | Trusted Eye Doctors in White Plains, NY
    Pacman Video Guatemala
    Gncc Live Timing And Scoring
    Kamzz Llc
    Ff14 Sage Stat Priority
    Fastpitch Softball Pitching Tips for Beginners Part 1 | STACK
    Rvtrader Com Florida
    Puerto Rico Pictures and Facts
    Daily Journal Obituary Kankakee
    Tgh Imaging Powered By Tower Wesley Chapel Photos
    Bridger Park Community Garden
    Unlock The Secrets Of "Skip The Game" Greensboro North Carolina
    How to Destroy Rule 34
    KM to M (Kilometer to Meter) Converter, 1 km is 1000 m
    Empires And Puzzles Dark Chest
    Gym Assistant Manager Salary
    Home Auctions - Real Estate Auctions
    Blow Dry Bar Boynton Beach
    Samsung 9C8
    Gander Mountain Mastercard Login
    The 13 best home gym equipment and machines of 2023
    Shiftselect Carolinas
    Sitka Alaska Craigslist
    Used Curio Cabinets For Sale Near Me
    Land of Samurai: One Piece’s Wano Kuni Arc Explained
    Salem witch trials - Hysteria, Accusations, Executions
    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.