Difference between revisions of "Point-to-Point Protocol"

From Computer History Wiki
Jump to: navigation, search
m (Jnc moved page PPP to Point-to-Point Protocol: Formal name)
(Other environments PPP is used in)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{stub}}
+
The '''Point-to-Point Protocol''' (usually given as the abbreviation, '''PPP'''), is a low-level [[protocol]] intended for  use in carrying [[packet]]s over point-to-point links - principally (originally) [[serial line]]s (both [[asynchronous serial line]]s and [[synchronous serial line]]s).
'''PPP''' is the '''point-to-point protocol''', part of the [[TCP/IP]] suite.  It is a link-level protocol defined in RFC 1134. It was intended to replace to often-used [[SLIP]].
+
 
 +
It has since been adopted in numerous other applications/environments, including [[SONET]], [[MPLS]], and [[Ethernet]] (where PPP is used to gain access to capabilities available under PPP, such as authentication).
 +
 
 +
PPP includes an extensible 'Link Control Protocol' (LCP), to perform a variety of actions such as configuring and testing the link. It also includes a family of 'Network Control Protocols' (NCPs), one for each [[protocol family]] carried over the link, which are used to establish and configure the carriage of packets in that protocol family.
 +
 
 +
It was created as part of the [[TCP/IP]] suite, and first defined in [[Request for Comments|RFC]] 1134 (below). It was intended to replace the fairly widely-used [[SLIP]].
 +
 
 +
{{semi-stub}}
 +
 
 +
==External links==
 +
 
 +
* [http://www.rfc-editor.org/info/rfc1134 Point-to-Point Protocol: A proposal for multi-protocol transmission of datagrams over Point-to-Point links] - original version (RFC-1134); contains informative content on the background and rationale
 +
* [http://www.rfc-editor.org/info/rfc1661 The Point-to-Point Protocol (PPP)] - latest revision (RFC-1661)
 +
** [https://www.rfc-editor.org/info/rfc1962 The PPP Compression Control Protocol (CCP)] (RFC-1962)
 +
** [https://www.rfc-editor.org/info/rfc1973 PPP in Frame Relay] (RFC-1973)
 +
** [https://www.rfc-editor.org/info/rfc2516 A Method for Transmitting PPP Over Ethernet (PPPoE)] (RFC-2516)
 +
** [https://www.rfc-editor.org/info/rfc2615 PPP over SONET/SDH] (RFC-2615)
 +
* [https://www.rfc-editor.org/info/rfc1332 The PPP Internet Protocol Control Protocol (IPCP)] (RFC-1332)
 +
** [https://www.rfc-editor.org/info/rfc3241 Robust Header Compression (ROHC) over PPP] (RFC-3241)
 +
** [https://www.rfc-editor.org/info/rfc4815 RObust Header Compression (ROHC): Corrections and Clarifications to RFC 3095] (RFC-4815)
 +
 
 +
[[Category: Network Protocols]]

Latest revision as of 17:48, 18 April 2024

The Point-to-Point Protocol (usually given as the abbreviation, PPP), is a low-level protocol intended for use in carrying packets over point-to-point links - principally (originally) serial lines (both asynchronous serial lines and synchronous serial lines).

It has since been adopted in numerous other applications/environments, including SONET, MPLS, and Ethernet (where PPP is used to gain access to capabilities available under PPP, such as authentication).

PPP includes an extensible 'Link Control Protocol' (LCP), to perform a variety of actions such as configuring and testing the link. It also includes a family of 'Network Control Protocols' (NCPs), one for each protocol family carried over the link, which are used to establish and configure the carriage of packets in that protocol family.

It was created as part of the TCP/IP suite, and first defined in RFC 1134 (below). It was intended to replace the fairly widely-used SLIP.

External links