What is a Bridge in Networking? – ITU Online IT Training

What is a Bridge in Networking?

Ready to start learning? Individual Plans →Team Plans →

A bridge in networking solves a simple problem: two Ethernet segments are talking too much to each other. By forwarding frames based on MAC addresses instead of IP addresses, a bridge keeps local traffic local and cuts down unnecessary flooding across a network bridge segment.

Featured Product

Cisco CCNA v1.1 (200-301)

Learn essential networking skills and gain hands-on experience in configuring, verifying, and troubleshooting real networks to advance your IT career.

Get this course on Udemy at the lowest price →

Quick Answer

A bridge in networking is a Layer 2 device that connects two or more LAN segments and forwards Ethernet frames using MAC address learning. As of August 2026, this matters because bridging is still the core idea behind modern Layer 2 switching, wireless bridges, and virtual network bridges used in labs, hypervisors, and segmented enterprise networks.

Definition

A bridge is a Layer 2 networking device that connects separate LAN segments and forwards frames based on MAC address information rather than IP routing decisions. Its job is to reduce unnecessary traffic between segments while preserving local communication.

LayerData Link Layer, also known as Layer 2, as of August 2026
Primary FunctionForward, filter, or flood Ethernet frames based on MAC addresses, as of August 2026
Common UseSegmenting LAN traffic and extending Ethernet connectivity, as of August 2026
Key Decision BasisDestination MAC address and learned forwarding table, as of August 2026
Modern EquivalentLayer 2 switching, as of August 2026
Typical OutcomeLess unnecessary traffic between segments and better local efficiency, as of August 2026

What Is a Bridge in Networking?

A bridge in networking is a device that connects two or more LAN segments at the Link Layer of the OSI Model. It examines Ethernet frames, learns where devices live by their source MAC addresses, and forwards traffic only where it needs to go.

The main idea is efficiency. Instead of letting every frame reach every device, a bridge keeps traffic contained when the destination is on the same segment. That behavior matters in large LANs, lab environments, and virtual networks where one noisy area should not drown out another.

A bridge is not a router. A router makes forwarding decisions based on IP networks and separate subnets, while a bridge stays at Layer 2 and works with frames, not packets. That distinction is why bridge questions show up in entry-level networking exams and why the concept still matters in Cisco CCNA v1.1 (200-301) study plans.

“A bridge does not create a new conversation style for the network. It simply decides which side of the wire should hear the frame.”

For official background on Layer 2 behavior, Cisco’s networking documentation and Cisco® learning materials remain the clearest vendor reference, while the standards behind Ethernet forwarding are reflected in the broader IEEE 802.1 family. Those standards are the reason bridge logic still maps directly to modern switching.

How Does a Bridge Work at Layer 2?

A bridge works by learning, filtering, and forwarding. The first time it sees traffic from a device, it records the source MAC address and the port or segment where that frame arrived. Over time, it builds a forwarding table that tells it where to send later frames.

  1. Receive a frame. The bridge gets an Ethernet frame from one segment.
  2. Learn the source MAC. It updates its table so it knows which segment that address belongs to.
  3. Check the destination MAC. If the destination is known, the bridge forwards the frame only to that port.
  4. Filter unnecessary traffic. If the destination is on the same incoming segment, the bridge drops the frame instead of sending it back out.
  5. Flood unknown traffic. If the destination is not yet known, the bridge may flood the frame to other ports until it learns the right path.

This learning behavior is why a bridge can improve Network Performance without changing application settings. The device does not care whether the payload is email, file sharing, VoIP signaling, or print traffic. It cares only about where the frame came from and where it should go next.

Pro Tip

If a bridge keeps flooding traffic longer than expected, suspect a learning problem, a topology issue, or a loop. In Layer 2 troubleshooting, “unknown destination” is often a symptom, not the root cause.

This forwarding logic is the same conceptual foundation used by modern Ethernet switches and by software bridges inside hypervisors. The hardware form changed, but the forwarding decision still begins with MAC address learning.

What Does Bridge Communication Actually Change?

Bridge communication changes how traffic moves across a LAN by limiting unnecessary frame propagation. A bridge does not magically increase raw link speed. What it does is reduce the amount of traffic each segment has to process, which can make a busy network feel faster because fewer irrelevant frames are hitting every device.

Think about a corporate network with two segments: Segment A handles heavy data transfers, and Segment B supports ordinary office work. If the bridge learns that a frame belongs on Segment A, it does not blindly send that traffic into Segment B. That selective behavior protects quieter segments from being overwhelmed by unrelated frames.

This is also why bridges matter in discussions about collision domains. In classic shared Ethernet, a bridge helped separate traffic paths so a busy department did not constantly interfere with a quiet one. Modern switched Ethernet achieves the same result at much larger scale, but the logic is the same: reduce contention by narrowing who sees what.

  • Less unnecessary traffic means fewer frames reaching devices that do not need them.
  • Better segment isolation keeps busy user groups from degrading lighter workloads.
  • Cleaner troubleshooting is possible when traffic flows are more predictable.

This is the key idea behind the exam-style question that asks what happens when you install an Ethernet bridge between a busy segment and a lighter one. The correct expectation is that the bridge selectively filters traffic and reduces impact on the quieter segment. It does not merge the segments into one collision domain in the way a hub would.

What Are the Key Components of a Bridge?

A bridge is simple on the surface, but the internal logic depends on a few core concepts. Understanding these components makes it easier to read forwarding behavior, spot loop risks, and explain why bridges still matter in modern networking.

Forwarding table
A list that maps MAC addresses to ports or segments. The table is learned over time and used to decide where a frame should go.
Source MAC address
The address the bridge uses to learn where a device lives. When a frame arrives, the bridge records the source location first.
Destination MAC address
The address the bridge uses to decide whether to forward, filter, or flood the frame.
Collision domain
The shared path where simultaneous transmissions can interfere. Bridging helped reduce this problem in older Ethernet designs.
Flooding behavior
The temporary practice of sending unknown-destination frames to multiple ports until the bridge learns the correct destination path.

These ideas connect directly to Switching, because a switch is effectively a multiport bridge with more speed, more ports, and better hardware forwarding. That is one reason bridge terminology is still worth learning even if you rarely deploy a standalone bridge.

For a standards-based perspective, the IEEE 802.1 family is the reference point for modern Layer 2 behavior, including bridge-related forwarding and filtering concepts. Official vendor documentation from Microsoft® Learn and Cisco® also shows how these behaviors appear in virtual and enterprise environments.

What Are the Types of Network Bridges?

Not all bridges solve the same problem. The most common types are transparent bridges, source-routing bridges, translational bridges, and wireless bridges. The names sound old-school because some of them are, but each type helps explain how Layer 2 connectivity can be extended or translated across different environments.

Transparent bridges

A transparent bridge is the familiar Ethernet bridge model. It learns MAC addresses silently, forwards frames based on those addresses, and stays mostly invisible to end devices. This is the model most people mean when they ask what a bridge does in networking.

Source-routing bridges

Source-routing bridges were used in networks where the frame itself carried route information. Rather than the bridge independently deciding every path, the sender helped define it. That approach is largely a historical concept now, but it is still useful when studying how Layer 2 forwarding evolved.

Translational bridges

A translational bridge connects different frame formats or networking technologies. Its job is to make one Layer 2 domain talk to another when the underlying protocols are not identical. In practice, this can matter when integrating legacy systems with newer infrastructure.

Wireless bridges

A wireless bridge links physically separated network segments over a wireless connection. For example, one building can extend its LAN to another building without pulling fiber immediately. That is still a real operational use case in warehouses, temporary sites, and remote offices.

The practical takeaway is simple: bridge types exist because networking problems differ. If the goal is invisible Ethernet segmentation, use transparent bridging concepts. If the goal is cross-technology integration or remote extension, the other bridge types become more relevant.

Bridge vs Switch: What’s the Difference?

A bridge and a switch both operate at Layer 2 and both forward frames using MAC addresses. The difference is scale. A switch is essentially a multiport bridge built for higher density, higher throughput, and more efficient hardware forwarding.

Bridge Usually connects a small number of segments and learns where traffic belongs
Switch Implements the same forwarding idea across many ports with better performance and more granular traffic control

In most enterprise networks, standalone bridges have been replaced by switches. That does not mean the bridge concept is obsolete. It means the bridge concept became the foundation of Layer 2 switching. If you understand the bridge, you already understand the logic behind switch forwarding tables, selective forwarding, and MAC learning.

That is also why a CCNA learner should pay attention to bridge behavior. Questions about segmentation, forwarding, and collision domains often test the same core thinking that bridge design introduced decades ago.

For vendor-aligned learning, Cisco Learning Network documentation shows how Layer 2 devices manage forwarding decisions, while Microsoft’s networking documentation shows how bridging logic appears in virtualized infrastructure and host networking.

Bridge vs Hub vs Router

A bridge sits between a hub and a router in terms of intelligence. A hub repeats everything to every port. A bridge filters frames based on MAC addresses. A router goes one step further and routes between IP networks using Layer 3 information.

  • Hub: repeats traffic blindly and creates one shared collision domain.
  • Bridge: forwards selectively and reduces unnecessary cross-segment traffic.
  • Router: separates networks at Layer 3 and makes decisions based on IP subnets.

This is the decision rule that saves time in troubleshooting: if the problem is about the same LAN behaving inefficiently, think bridge or switch. If the problem is about traffic crossing subnets, think router. If the problem is about every device hearing every frame, you are dealing with hub-like behavior or a badly designed Layer 2 domain.

Warning

A bridge is not a substitute for routing. If two groups need policy separation, subnet control, or inter-VLAN logic, Layer 3 design is the correct solution.

This distinction matters in real deployments and in certification exams because the wrong answer often sounds plausible. Bridges control Layer 2 traffic patterns. Routers control Layer 3 network boundaries.

Why Did Network Bridges Evolve into Switches?

Network bridges emerged when early Ethernet networks became congested. Shared media created too much contention, too many collisions, and too much unnecessary frame visibility. A bridge was a practical way to break a large noisy network into smaller pieces without forcing everyone onto separate routed networks.

As Ethernet got faster and port counts grew, the standalone bridge form factor gave way to the switch. The forwarding logic stayed the same, but the implementation improved. Better silicon, faster backplanes, and more intelligent traffic handling made switches the natural replacement for most bridge deployments.

This historical shift is important because people sometimes assume “bridge” means “obsolete.” It does not. The device name changed, but the design principle survived in switches, wireless bridging, software-defined networking, and virtual lab environments. If anything, bridges became more conceptual than physical.

The bridge did not disappear. It became the logic hidden inside the switch.

That history also explains why older networking exams and newer virtualization scenarios still mention bridging. The term has not gone away because the underlying problem has not gone away: you still need a way to decide whether a frame belongs on this segment, that segment, or nowhere at all.

What Are the Common Use Cases for Network Bridges?

Bridges are useful whenever you want two Ethernet segments to behave like one logical LAN without jumping immediately to routed design. That is the broad use case, but the real world includes several specific scenarios.

  • LAN segmentation: A bridge can reduce traffic noise between departments, labs, or floor segments.
  • Building-to-building extension: A wireless or media bridge can connect separate spaces when cable runs are difficult.
  • Legacy integration: Older devices that expect Layer 2 continuity can be connected through bridging.
  • Virtual networking: Hypervisors often use a virtual bridge to attach virtual machines to a physical LAN.
  • Troubleshooting labs: A bridge helps simulate real Ethernet forwarding behavior in test environments.

One practical example is a warehouse that needs a temporary network in a separate section of the building. A wireless bridge can link that area back to the main LAN without waiting for a new cable run. Another example is a hypervisor host using a software bridge so a VM can appear as a normal device on the same Ethernet segment as physical servers.

From an operations perspective, these use cases matter because they let teams extend connectivity without immediately adding routing complexity. The tradeoff is that you must manage Layer 2 behavior carefully, especially if the environment also includes VLANs, spanning tree, or multiple interconnected paths.

What Are the Advantages of Using a Bridge?

The biggest advantage of a bridge is selective forwarding. Devices on one segment do not need to process every frame from another segment, so local traffic stays local and network noise drops. That can make a shared Ethernet environment much easier to live with.

A second advantage is logical organization. A bridge lets administrators carve a physical network into smaller areas while still preserving the behavior of a single LAN where that is useful. That can simplify legacy support, lab design, and certain temporary deployments.

  • Reduced unnecessary traffic across segments.
  • Better local efficiency for busy and quiet departments.
  • Flexible extension without immediate routing design.
  • Helpful mental model for understanding switches and virtual bridges.

Bridging is also helpful because it teaches the discipline of Layer 2 segmentation. If you understand how a bridge forwards or filters traffic, you are already halfway to understanding switch ports, MAC tables, VLAN behavior, and why broadcast domains must be designed carefully.

For industry context, network segmentation remains a standard control in security frameworks such as NIST guidance and in practical architectures that reduce the spread of Layer 2 problems. The bridge is one of the simplest ways to see that principle in action.

What Are the Limitations and Disadvantages of Bridges?

A bridge is not a routing device, so it cannot solve subnetting or policy segmentation problems. If you need traffic isolation by IP network, a bridge is the wrong tool. That limitation is easy to miss when the only goal is “make these two things talk.”

Bridges also depend on healthy Layer 2 design. If the network has loops, bad cabling, repeated unknown destinations, or poor topology control, bridging can amplify problems rather than fix them. In other words, a bridge can reduce traffic when it is well designed and multiply pain when it is not.

Compared with modern switches, standalone bridges do not scale well. They are usually slower, have fewer ports, and offer less visibility into traffic patterns. That is why enterprise environments almost always use switches, VLANs, and routing instead of old-school bridge appliances.

  • No Layer 3 separation for subnets or routed boundaries.
  • Loop sensitivity if topology control is weak.
  • Limited scalability compared with switches.
  • Potential troubleshooting complexity in crowded Layer 2 domains.

Official guidance from the National Institute of Standards and Technology (NIST) consistently emphasizes segmentation and controlled boundaries for resilience and security. Bridges can help segment traffic, but they do not replace a sound network architecture.

How Do Security and Performance Considerations Affect Bridging?

Bridging can improve performance on a local LAN, but it can also enlarge the footprint of Layer 2 problems if misconfigured. A bridged environment may allow broadcasts, unknown unicasts, and loops to spread farther than intended. That is why Layer 2 design is never just a cabling decision.

From a security perspective, overly broad bridging can expose more devices to more traffic than necessary. That increases the blast radius of mistakes and can complicate containment. If a business need can be solved with smaller broadcast domains or routed boundaries, that design is often safer.

  1. Minimize unnecessary Layer 2 extension. Only bridge segments that truly need to behave as one LAN.
  2. Control loops. Use sound topology management and spanning tree principles where appropriate.
  3. Watch flooding behavior. Repeated flooding can indicate a learning or cabling issue.
  4. Document segment purpose. Know why each bridge exists before you troubleshoot it.

Performance is not just about link speed. It is about how much irrelevant traffic reaches each device. That is why a bridge can make one segment feel cleaner even if the overall bandwidth has not changed. Selective forwarding is a traffic-shaping behavior at Layer 2, not a raw throughput upgrade.

For security and control frameworks, NIST SP 800-41 and broader NIST architecture guidance remain useful references for understanding network boundary design, while CISA materials reinforce the operational value of segmentation and least exposure.

How Are Bridges Used in Modern Networking and Virtualization?

The bridge concept survives in places where the hardware bridge itself is no longer obvious. Virtual switches, hypervisors, host networking stacks, and some software-defined environments still use bridging logic to connect one Layer 2 endpoint to another.

For example, a virtual machine may attach to a software bridge on the host so it can appear on the same Ethernet network as physical devices. That setup is common in labs and in production environments that need seamless host-to-VM connectivity. The same idea also appears in containers, test networks, and cloud-connected appliances that must preserve Layer 2 reachability.

Bridging also shows up in mixed environments that contain legacy equipment. If a device expects to live on a flat Ethernet segment, a bridge may be the cleanest way to connect it without redesigning the rest of the network immediately. The bridge becomes the compatibility layer between old assumptions and current infrastructure.

  • Virtual machine attachment to physical LANs.
  • Host networking in hypervisors and test labs.
  • Legacy device integration where Layer 2 continuity is required.
  • Conceptual mapping to VLAN and segmentation design.

Understanding bridges makes cloud and virtualization troubleshooting easier because many “network” problems are actually Layer 2 forwarding problems hidden inside software. If a virtual NIC cannot reach the rest of the LAN, the issue may be bridging, MAC learning, host firewall rules, or the wrong network attachment mode.

When Should You Use a Bridge?

You should use a bridge when two network segments need to behave like one Layer 2 environment and the goal is selective forwarding rather than subnet separation. That is the cleanest decision rule.

Bridging is useful when you want to extend a LAN, connect a remote area, support a lab, or attach a virtual machine to a physical network without introducing routing complexity. It is also useful when existing devices or applications assume flat Ethernet behavior and cannot easily be reconfigured.

Do not use a bridge when the requirement is policy control, subnet isolation, or traffic routing between distinct IP networks. In those cases, the right answer is usually VLAN design, routing, or a security boundary at Layer 3 or above.

Key Takeaway

A bridge is the right tool when you need Layer 2 continuity across segments, not when you need subnet separation.

If you are designing for a certification exam or for production troubleshooting, ask one question first: “Should these devices share the same broadcast domain?” If yes, a bridge or switch may fit. If no, move toward routed segmentation instead.

How Do You Think About Bridges in Troubleshooting?

Bridge troubleshooting starts with one question: is the problem about learning, forwarding, or topology? If frames are not reaching the right place, the bridge may have the wrong MAC mapping, an unstable path, or a segment that is not connected the way you think it is.

Common symptoms include unexpected flooding, traffic that never seems to settle, one segment seeing too much unrelated traffic, or a quiet segment suddenly behaving like a busy one. Those are usually Layer 2 clues, not application-layer clues.

  1. Check MAC learning. Confirm that the bridge has learned the correct source addresses.
  2. Verify segment membership. Make sure each device is attached to the intended side of the bridge.
  3. Look for loops. Repeated flooding or instability often points to a Layer 2 loop.
  4. Compare expected and actual traffic paths. The frame should only move where the forwarding table says it should.

This troubleshooting approach overlaps directly with CCNA-level thinking because the goal is to isolate the problem domain. If the frame never reaches the destination segment, the issue may be at Layer 2. If it reaches the segment but the application still fails, the problem may be elsewhere. That discipline saves time.

The ability to reason through a bridge in networking is also the ability to reason through a switch, a virtual bridge, or a segmented Ethernet design. That is why this topic remains practical even when you never touch a standalone bridge appliance.

Real-World Examples of Bridges in Networking

One common real-world example is a wireless bridge connecting two buildings on the same campus. Instead of running new cabling immediately, a team can extend the LAN over a point-to-point wireless link and keep systems on both sides in the same Layer 2 environment. That is useful for temporary sites, warehouses, and campus outbuildings.

A second example is a virtual bridge on a Linux host or in a hypervisor. In that setup, the virtual machine connects to the host bridge and appears as a normal LAN device to the rest of the network. Administrators use this design for testing, lab work, and workloads that need direct Layer 2 access.

Another practical example appears in mixed legacy environments. A manufacturing or lab system may depend on older Ethernet assumptions, and a bridge can preserve compatibility without redesigning the full network. That is often cheaper and safer than forcing every legacy component into a routed model overnight.

Finally, the classic training scenario still matters: a network administrator is tasked with improving the efficiency of a corporate network that consists of two segments, where Segment A is heavily used and Segment B handles light office work. The administrator considers installing an Ethernet bridge between the two segments. The expected outcome is that the bridge will forward and selectively filter traffic so Segment B is less affected by Segment A’s load. It will not increase the bandwidth of Segment B, and it will not convert the two segments into one collision domain.

That question is a perfect test of bridge communication, Layer 2 reasoning, and traffic control.

How Does Bridge Knowledge Support Networking Fundamentals?

Bridge knowledge gives you a clear mental model for how Layer 2 networks behave. If you can explain why a bridge forwards some frames, filters others, and floods unknown destinations, you can explain why a switch behaves the way it does and why segmentation decisions matter.

This knowledge also helps with exam-style questions that use “bridge” as shorthand for selective Layer 2 forwarding. The concept connects directly to Ethernet design, MAC learning, broadcast domains, and basic troubleshooting logic. It is not an old topic. It is a foundational one.

In practical IT work, that foundation pays off when you are reading a topology, validating a virtual lab, or deciding whether a problem belongs to Layer 2 or Layer 3. If you understand bridging, you are better prepared to design, verify, and troubleshoot real networks.

Key Takeaway

  • A bridge in networking is a Layer 2 device that forwards Ethernet frames using MAC address learning.
  • Bridge communication reduces unnecessary traffic by filtering frames between segments.
  • A switch is effectively a multiport bridge with better performance and scale.
  • Bridges do not replace routers; they solve a different problem at Layer 2.
  • Understanding bridges helps with troubleshooting, virtualization, and CCNA-level network design.
Featured Product

Cisco CCNA v1.1 (200-301)

Learn essential networking skills and gain hands-on experience in configuring, verifying, and troubleshooting real networks to advance your IT career.

Get this course on Udemy at the lowest price →

Conclusion

A bridge in networking is a Layer 2 device that connects LAN segments using MAC-based forwarding. Its value comes from selective filtering: local traffic stays local, and only the frames that belong on another segment cross the bridge.

That makes bridges useful for segmentation, legacy connectivity, wireless extension, and virtual networking. It also makes the concept essential for understanding switches, hubs, routers, and the way Ethernet traffic is controlled in real environments.

If you are studying networking fundamentals or working through Cisco CCNA v1.1 (200-301) material, make sure you can explain how a bridge learns MAC addresses, why it floods unknown traffic, and when it is the wrong tool for the job. Those are the details that separate memorized definitions from usable network knowledge.

The practical next step is simple: review one Layer 2 topology in your environment or lab and identify where a bridge-like decision is happening. Once you can spot that behavior, the rest of Ethernet forwarding starts to make a lot more sense.

Cisco® and CCNA™ are trademarks of Cisco Systems, Inc.

[ FAQ ]

Frequently Asked Questions.

What is the primary function of a network bridge?

The primary function of a network bridge is to connect multiple LAN segments and facilitate communication between them while reducing unnecessary traffic. It operates at Layer 2 of the OSI model, focusing on Ethernet frame forwarding based on MAC addresses.

By learning MAC addresses on each segment, the bridge intelligently forwards frames only to the segment where the destination MAC address resides. This process helps maintain efficient network traffic flow, minimizes congestion, and improves overall network performance.

How does a network bridge differ from a switch?

While both a bridge and a switch operate at Layer 2 and use MAC addresses to forward frames, a switch is generally more advanced and capable of handling multiple ports simultaneously. Switches often have multiple ports and can create dedicated collision domains for each, enhancing network efficiency.

Bridges typically connect fewer segments and may be used in smaller or simpler networks. Switches also support features like VLANs and port security, making them more versatile. In essence, switches are an evolution of bridges, offering greater scalability and performance.

What are the benefits of using a bridge in a network?

Using a bridge in a network offers several benefits, including segmentation of LANs, reduction of broadcast traffic, and improved network performance. It helps isolate traffic within specific segments, preventing unnecessary data flooding across the entire network.

Bridges also enhance network security by segmenting traffic and allowing administrators to control data flow. They are useful in extending network segments without the need for expensive hardware or complex configurations, thereby improving overall network efficiency.

Can a bridge improve network security?

Yes, a bridge can improve network security by segmenting different parts of a LAN, which helps contain broadcast traffic and restricts the spread of malicious data or attacks. Properly configured bridges can isolate sensitive segments from less secure areas of the network.

However, bridges alone are not sufficient for comprehensive security. They should be used in conjunction with other security measures like firewalls, VLANs, and access controls to effectively protect network resources and data.

What are some common misconceptions about network bridges?

A common misconception is that a bridge operates at Layer 3 like a router, but it actually functions at Layer 2, focusing on MAC address learning and forwarding. Another misconception is that bridges can handle IP routing, which is not their purpose.

Additionally, some believe bridges are outdated technology; however, they still play a crucial role in specific network scenarios, especially in small or legacy systems. Modern switches have largely replaced traditional bridges, but the underlying principles remain similar.

Related Articles

Ready to start learning? Individual Plans →Team Plans →
Discover More, Learn More
What Is Optical Networking? Discover how optical networking uses light to transmit data over fiber optic… What Is a Frame in Networking? Discover what a network frame is and how it impacts data transmission… What Is Energy-Efficient Networking? Discover how energy-efficient networking can reduce power consumption, lower costs, and maintain… What is Mesh Networking? Learn how mesh networking works, its key features, and real-world applications to… What is Green Networking? Discover how green networking helps optimize network performance while minimizing energy consumption,… What Is (ISC)² CCSP (Certified Cloud Security Professional)? Discover how to enhance your cloud security expertise, prevent common failures, and…
FREE COURSE OFFERS