Change NHLFE MTU calculation
[mpls-linux.git] / patches / README.ebtables
blobc623486758c63ef4119b634b8be35b401568999b
1 MPLS enabled Ebtables
2 ---------------------
4 Ebtables is used to do all sorts of "weird" things with Ethernet frames.  With
5 this patch, traffic you can describe via ebtables, can be mapped onto an LSP.
7 Run it
8 ------
10 After compiling and installing the MPLS enabled version of ebtables, you will
11 have a new target which has the syntax:
13 -j mpls --nhlfe <key>
15 Here is an example of how to redirect ethernet frames from eth1 onto an LSP
16 with key 0x2:
18 brctl addbr br0
19 brctl addif br0 eth1
20 ip link set eth1 up
21 ip link set br0 up
22 ebtables -t nat -A PREROUTING -i eth1 -j mpls --nhfle 0x2
24 !!NOTE You MUST use the bridge interface!!
26 The key 0x2 comes from the output of 'mpls' when creating a NHLFE (see
27 REAME.iproute2 for more info)
29 ------------------------------------------------------------------------------
31 Copyright by James R. Leu <jleu@mindspring.com> 1999-2008