home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 August / PCWorld_1999-08_cd.bin / doc / HOWTO / mini / Bridge < prev    next >
Text File  |  1998-09-23  |  7KB  |  331 lines

  1.   Bridging mini-Howto
  2.   Christopher Cole  cole@coledd.com
  3.   v1.11, 7 September 1998
  4.  
  5.   This document describes how to setup an ethernet bridge.  What is an
  6.   ethernet bridge?  An ethernet bridge is a device that controls data
  7.   packets within a subnet in an attempt to cut down the amount of traf¡
  8.   fic.  A bridge is usually placed between two separate groups of com¡
  9.   puters that talk within themselves, but not so much with the computers
  10.   in the other group.  A good example of this is to consider a cluster
  11.   of Macintoshes and a cluster of unix machines.  Both of these groups
  12.   of machines tend to be quite chatty amongst themselves, and the traf¡
  13.   fic they produce on the network causes collisions for the other
  14.   machines who are trying to speak to one another.  A bridge would be
  15.   placed between these groups of computers.  The job of the bridge is
  16.   then to examine the destination of the data packets one at a time and
  17.   decide whether or not to pass the packets to the other side of the
  18.   ethernet segment.  The result is a faster, quieter network with less
  19.   collisions.
  20.   ______________________________________________________________________
  21.  
  22.   Table of Contents
  23.  
  24.  
  25.   1. Setup
  26.  
  27.   2. Common problems
  28.  
  29.  
  30.  
  31.   ______________________________________________________________________
  32.  
  33.   1.  Setup
  34.  
  35.  
  36.   1. Get ``Bridge Config'':
  37.  
  38.        <ftp://shadow.cabi.net/pub/Linux/BRCFG.tgz>
  39.  
  40.  
  41.  
  42.   2. Enable multiple ethernet devices on your machine by adding this to
  43.      your /etc/lilo.conf, and re-run lilo:
  44.  
  45.  
  46.        append = "ether=0,0,eth1"
  47.  
  48.  
  49.  
  50.  
  51.  
  52.   If you have three interfaces on your bridge, use this line instead:
  53.  
  54.  
  55.        append = "ether=0,0,eth1 ether=0,0,eth2"
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.   More interfaces can be found by adding more ether statements.  By
  63.   default a stock Linux kernel probes for a single ethercard, and once
  64.   one is found the probe ceases.  The above append statement tells the
  65.   kernel to keep probing for more ethernet devices after the first one
  66.   is found.
  67.   Alternatively, the boot parameter can be used instead:
  68.  
  69.  
  70.        linux ether=0,0,eth1
  71.  
  72.  
  73.  
  74.  
  75.  
  76.   Or, with 3 interfaces, use:
  77.  
  78.  
  79.        linux ether=0,0,eth1 ether=0,0,eth2
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.   3. Recompile the kernel with BRIDGING enabled.
  87.  
  88.   4. A bridge should not have an IP address.  It CAN, but a plain bridge
  89.      doesn't need one.  To remove the IP address from your bridge, go to
  90.      /etc/sysconfig/network-scripts/ (for a RedHat system) and copy
  91.      ifcfg-lo0 to ifcfg-eth0 & ifcfg-eth1.  In these 2 eth files, change
  92.      the line containing ``DEVICE=lo'' to ``DEVICE=eth0'' and
  93.      ``DEVICE=eth1''.  Other distributions may deviate from this, do
  94.      what you need to do!  If there are more than 2 interfaces to this
  95.      bridge, be sure to make the corresponding configurations to those,
  96.      as well.
  97.  
  98.   5. Reboot, so you are running the new kernel with bridging in it, and
  99.      also to make sure that an IP addresses are not bound to the network
  100.      interfaces.
  101.  
  102.   6. Once the system is back up, put the ethernet cards into promiscuous
  103.      mode, so they will look at every packet that passes by its
  104.      interface:
  105.  
  106.  
  107.        ifconfig eth0 promisc ; ifconfig eth1 promisc
  108.  
  109.  
  110.  
  111.  
  112.  
  113.   All interfaces which are connected to network segments to be bridged
  114.   are to be put into promiscuous mode.
  115.  
  116.   7. Turn bridging ON using the brcfg program:
  117.  
  118.  
  119.        brcfg -ena
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.   8. Verify that there is different traffic on each interface:
  127.  
  128.  
  129.        tcpdump -i eth0      (in one window)
  130.        tcpdump -i eth1      (in another window)
  131.  
  132.  
  133.   9. Run a sniffer or tcpdump on another machine to verify the bridge is
  134.      separating the segment correctly.
  135.  
  136.   2.  Common problems
  137.  
  138.  
  139.   1.
  140.  
  141.      Question
  142.         I get the message
  143.  
  144.  
  145.           ioctl(SIOCGIFBR) failed: Package not installed
  146.  
  147.  
  148.  
  149.  
  150.  
  151.      What does this mean?
  152.  
  153.      Answer
  154.         You don't have bridging capability in your kernel.  Get a 2.0 or
  155.         greater kernel, and recompile with the BRIDGING option enabled.
  156.  
  157.  
  158.   2.
  159.  
  160.      Question
  161.         Machines on one side cannot ping the other side!
  162.  
  163.      Answer
  164.  
  165.      ╖  Did you enable bridging using ``brcfg -ena''?  (brcfg should say
  166.         ``bridging is ENABLED'')
  167.  
  168.      ╖  Did you put the interfaces into promiscuous mode?  (issue the
  169.         ``ifconfig'' command.  The ``PROMISC'' flag should be on for
  170.         both interfaces.)
  171.  
  172.      ╖  If using multiple-media interface adapters, make sure that the
  173.         correct one is enabled.  You may need to use the config/setup
  174.         program that came with the network interface card.
  175.  
  176.  
  177.   3.
  178.  
  179.      Question
  180.         I cannot telnet/ftp from the bridge! Why?
  181.  
  182.      Answer
  183.         This is because there is no IP address bound to any of bridge
  184.         interfaces.  A bridge is to be a transparent part of a network.
  185.  
  186.  
  187.   4.
  188.  
  189.      Question
  190.         What do I need to set up in the way of routing?
  191.  
  192.      Answer
  193.         Nothing!  All routing intelligence is handled by the bridging
  194.         code in the kernel.  To see the ethernet addresses as they are
  195.         learned by the bridge, use the brcfg program in debug mode:
  196.  
  197.  
  198.  
  199.      brcfg -deb
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.   5.
  207.  
  208.      Question
  209.         The bridge appears to work, but why doesn't ``traceroute'' show
  210.         the bridge as a part of the path?
  211.  
  212.      Answer
  213.         Due to the nature of a bridge, a ``traceroute'' should NOT show
  214.         the bridge as a part of the path. A bridge is to be a
  215.         transparent component of the network.
  216.  
  217.  
  218.   6.
  219.  
  220.      Question
  221.         Is it necessary to compile IP_FORWARD into the kernel?
  222.  
  223.      Answer
  224.         No. The bridging code in the kernel takes care of the packet
  225.         transport.  IP_FORWARD is for a gateway which has IP addresses
  226.         bound to its interfaces.
  227.  
  228.  
  229.   7.
  230.  
  231.      Question
  232.         Why are the physical ethernet addresses for port 1 and port 2
  233.         the same according to the ``brcfg'' program?  Shouldn't they be
  234.         different?
  235.  
  236.      Answer
  237.         No. Every port on a bridge intentionally is assigned the same
  238.         physical ethernet address by the bridging code.
  239.  
  240.  
  241.   8.
  242.  
  243.      Question
  244.         Bridging does not appear to be an option when performing a make
  245.         config on the kernel.  How does one enable it?
  246.  
  247.      Answer
  248.         During the kernel config, answer 'Y' to the question, ``Prompt
  249.         for development and/or incomplete code/drivers
  250.         (CONFIG_EXPERIMENTAL) [Y/n/?]''.
  251.  
  252.  
  253.   9.
  254.  
  255.      Question
  256.         Too many hubs (4 or more) chained one after another (in series)
  257.         cause timing problems on an ethernet.  What effect does a bridge
  258.         have in a subnet that is layered with hubs?
  259.  
  260.      Answer
  261.         A bridge resets the 3/4/5 hubs rule.  A bridge does not deal
  262.         with packets the way a hub does, and is therefore not a
  263.         contributor to timing problems on a network.
  264.  
  265.   10.
  266.  
  267.      Question
  268.         Can a bridge interface to both 10Mb and 100Mb ethernet segments?
  269.         Will such a configuration slow down the rest of the traffic on
  270.         the high speed side?
  271.  
  272.      Answer
  273.         Yes, a bridge can tie together a 10Mb segment with a 100Mb
  274.         segment.  As long as the network card on the fast network is
  275.         100Mb capable, TCP takes care of the rest.  While it's true that
  276.         the packets from a host in the 100Mb network communicating to a
  277.         host in the 10Mb network are moving at only 10Mb/s, the rest of
  278.         the traffic on the fast ethernet is not slowed down.
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.