Changeset 2528

Show
Ignore:
Timestamp:
05/17/07 14:38:20 (2 years ago)
Author:
wbx
Message:

add bridging support

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/mk/modules.mk

    r2522 r2528  
    1111        $(MODULES_DIR)/kernel/net/atm/atm \ 
    1212,50)) 
     13 
     14$(eval $(call KMOD_template,BRIDGE,bridge,\ 
     15        $(MODULES_DIR)/kernel/net/bridge/bridge \ 
     16,10)) 
    1317 
    1418$(eval $(call KMOD_template,NET_IPGRE,gre,\ 
  • trunk/freewrt/package/bridge-utils/Config.in

    r1242 r2528  
    33        tristate 
    44        default n 
     5        select FWRT_KPACKAGE_KMOD_BRIDGE 
    56        help 
    67          Manage ethernet bridging; a way to connect networks together to  
  • trunk/freewrt/target/linux/config/Config.in.isdn

    r2504 r2528  
    5353        tristate 
    5454        select FWRT_KERNEL_ISDN_CAPI_CAPI20 
     55        select FWRT_KERNEL_ISDN 
    5556        default n 
    5657        help 
     
    6263        default n 
    6364        depends on FWRT_LINUX_2_6 
    64         select FWRT_KERNEL_ISDN 
    6565        select FWRT_KERNEL_MISDN_DSP 
    6666        select FWRT_KPACKAGE_KMOD_ISDN_CAPI 
  • trunk/freewrt/target/linux/config/Config.in.network

    r2522 r2528  
    2626 
    2727config FWRT_KERNEL_IMQ 
     28        tristate 
     29        default n 
     30 
     31config FWRT_KERNEL_LLC 
    2832        tristate 
    2933        default n 
     
    4751#        further details. 
    4852 
     53config FWRT_KPACKAGE_KMOD_BRIDGE 
     54        prompt "kmod-net-bridge................... 802.1d Ethernet Bridging" 
     55        tristate 
     56        select FWRT_KERNEL_LLC 
     57        default n 
     58        help 
     59          If you say Y here, then your Linux box will be able to act as an 
     60          Ethernet bridge, which means that the different Ethernet segments it 
     61          is connected to will appear as one Ethernet to the participants. 
     62          Several such bridges can work together to create even larger 
     63          networks of Ethernets using the IEEE 802.1 spanning tree algorithm. 
     64          As this is a standard, Linux bridges will cooperate properly with 
     65          other third party bridge products. 
     66 
     67          In order to use the Ethernet bridge, you'll need the bridge 
     68          configuration tools; see <file:Documentation/networking/bridge.txt> 
     69          for location. Please read the Bridge mini-HOWTO for more 
     70          information. 
     71 
     72          If you enable iptables support along with the bridge support then you 
     73          turn your bridge into a bridging IP firewall. 
     74          iptables will then see the IP packets being bridged, so you need to 
     75          take this into account when setting up your firewall rules. 
     76          Enabling arptables support when bridging will let arptables see 
     77          bridged ARP traffic in the arptables FORWARD chain. 
     78 
    4979config FWRT_KPACKAGE_KMOD_NET_IPIP 
    5080        prompt "kmod-net-ipip..................... IP in IP encapsulation support"