Change NHLFE MTU calculation
[mpls-linux.git] / patches / README.pppd
blob484c35d930865c265be773a3b6d0e81c3c4f3567
1 MPLS for PPP
2 ------------
4 To run a specific protocol over PPP, you need a configuration protocol
5 to configure it ; in case of MPLS over PPP, the protocol is MPLSCP (MPLS
6 Configuration Protocol). This patch add the MPLSCP support to the pppd daemon.
8 Run it
9 ------
11 For example, connect the serial async port (RS-232) of 2 PCs back-to-back
12 with a NULL-MODEM cable (rolled over) and use the following commands on each 
13 PC :
15 setserial /dev/ttyS0 spd_vhi
16 pppd /dev/ttyS0 115200 local <local_IP_address>:<remote_IP_address> noauth mpls
18 Example
19 -------
21            R1 -----------z----------- R2
22         10.0.0.1                   10.0.0.2
24 on R1 :
26 setserial /dev/ttyS1 spd_vhi
27 pppd /dev/ttyS0 115200 local 10.0.0.1:0 noauth mpls
29 on R2 :
31 setserial /dev/ttyS1 spd_vhi
32 pppd /dev/ttyS0 115200 local 10.0.0.2:0 noauth mpls
34 ------------------------------------------------------------------------------
36 Original patch written by <serge.krier@advalvas.be> and copyright 2001
37 Modification by James R. Leu <jleu@mindspring.com> are copyright 2002-2008