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)
(Fill out to a real, but still somewhat stubby, article)
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). It has since been adopted in numerous other applications/environments.
'''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]].
+
 
 +
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/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]]

Revision as of 10:58, 17 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.

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