Point-to-Point Protocol (PPP): PPP is a type of Layer 2 protocol (Data-link layer) used on serial links in a Wide Area Network (WAN). PPP features two methods of authentication PAP (Password Authentication Protocol) and CHAP (Challenge Handshake Authentication Protocol) . A connection is established between two peers only after authentication succeeds. PAP sends the password in clear text where as CHAP encrypts the password while sending over the network for authentication. PPP encapsulation is possible only over a serial link.
Typical configuration steps are as given below:
router#configure terminal
router(config)#interface serial
0
router (config-if)#encapsulation
ppp -This command enables PPP encapsulation and functionality on a serial interface.
Config-if#ppp authentication chap pap
The ppp authentication command is used to configure the PPP PAP or CHAP authentication protocols on an interface. The interface must be using ppp encapsulation to access these protocols. Enables both CHAP and PAP, and performs CHAP authentication before PAP.
The following are true about HDLC encapsulation over serial links:
1. HDLC encapsulation used on Cisco routers is proprietary (uses a Type field), and may not be compatible with routers manufactured by other vendors.
2. It is recommended to use other encapsulation schemes such as PPP when connecting between a Cisco router and a non-Cisco router instead of HDLC encapsulation.
You want to provide for two different kinds of traffic. One is VOIP (voice) traffic, and the other is regular data traffic. Voice traffic should have priority over data traffic because any delay in receiving VOIP packets may result in poor audio quality at the VOIP phone. You can separate the VOIP traffic from regular traffic by using VLANs, and Switch.
Verification of ppp: To verify PPP configuration, the “show interface serial
Multilink PPP: Multilink PPP is a way to use many physical WAN links with PPP. This in effect allows for load balancing.
The command for configuring multilink PPP is: “ppp multilink” in the interface configuration mode as shown below for R1 and R2.
R1(config-if)#ppp multilink
R2(config-if)#ppp multilink
NOTE: the quality and multilink commands are not frequently used, and they may not work on Packet tracer simulator.
In order to verify , simply use “show ip interface brief” and ensure that the physical interfaces as well as the multilink interfaces are in the up state.