old-www/HOWTO/BRIDGE-STP-HOWTO/what-is-a-bridge.html

238 lines
4.6 KiB
HTML

<HTML
><HEAD
><TITLE
>What Is A Bridge?</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.63
"><LINK
REL="HOME"
TITLE="Linux BRIDGE-STP-HOWTO"
HREF="index.html"><LINK
REL="PREVIOUS"
TITLE="Document Home and Downloads
"
HREF="home-and-download.html"><LINK
REL="NEXT"
TITLE="Rules On Bridging"
HREF="rules-on-bridging.html"></HEAD
><BODY
CLASS="SECT1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Linux BRIDGE-STP-HOWTO: About The Linux Modular Bridge And STP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="home-and-download.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="rules-on-bridging.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="WHAT-IS-A-BRIDGE"
>3. What Is A Bridge?</A
></H1
><P
>A bridge is a device that separates two or more network segments
within one logical network (e.g. a single IP-subnet).
</P
><P
>A bridge is usually placed between two separate groups of computers
that talk with each other, but not that much with the computers in
the other group.
A good example of this is to consider a cluster of Macintoshes and a
cluster of Unix machines.
Both of these groups of machines tend to be quite chatty amongst
themselves, and the traffic they produce on the network causes
collisions for the other machines who are trying to speak to one
another.
</P
><P
>The job of the bridge is to examine the destination of the
data packets one at a time and decide whether or not to pass the
packets to the other side of the Ethernet segment.
The result is a faster, quieter network with less collisions.
</P
><P
>The bridging code decides whether to bridge data or to drop it not
by looking at the protocol type (IP, IPX, NetBEUI), but by looking at
the <SPAN
CLASS="ACRONYM"
>MAC</SPAN
>-address unique to each NIC.
</P
><DIV
CLASS="IMPORTANT"
><BLOCKQUOTE
CLASS="IMPORTANT"
><P
><B
>Important: </B
>It's vital to understand that a bridge is neither a router nor
a fire-wall.
Spoken in simple term a bridge behaves like a network switch
(i.e. Layer 2 Switch), making it a transparent network component
(which is not absolutely true, but nearly).
Read more about this at <A
HREF="rules-on-bridging.html"
>Section 4</A
>.
</P
></BLOCKQUOTE
></DIV
><P
>In addition, you can overcome hardware incompatibilities with a
bridge, without leaving the address-range of your IP-net or subnet.
E.g. it's possible to bridge between different physical media like
10 Base T and 100 Base TX.
</P
><P
>My personal reason for starting to set up a bridge was that in my
work I had to connect Fast Ethernet components to a existing HP
Voice Grade network, which is a proprietary networking standard.
</P
><P
></P
><DIV
CLASS="VARIABLELIST"
><P
><B
>Features Above Pure Bridging</B
></P
><DL
><DT
>STP</DT
><DD
><P
>The Spanning Tree Protocol is a nifty method of keeping
Ethernet devices connected in multiple paths working.
The participating switches negotiate the shortest available path
by STP.
This feature will be discussed in
<A
HREF="advanced-bridge.html#STP"
>Section 7.1</A
>.
</P
></DD
><DT
>Multiple Bridge Instances</DT
><DD
><P
>Multiple bridge instances allow you to have more than one
bridge on your box up and running, and to control each instance
separately.
</P
></DD
><DT
>Fire-walling</DT
><DD
><P
>There is a patch to the bridging code which allows you
to use IP chains on the interface inside a bridge.
More info about this you'll find at
<A
HREF="advanced-bridge.html#IPCHAINS"
>Section 7.2</A
>.
</P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="home-and-download.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="rules-on-bridging.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Document Home and Downloads</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
>&nbsp;</TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Rules On Bridging</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>