xref: /freebsd/share/man/man4/ng_ppp.4 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
14cf49a43SJulian Elischer.\" Copyright (c) 1996-1999 Whistle Communications, Inc.
24cf49a43SJulian Elischer.\" All rights reserved.
34cf49a43SJulian Elischer.\"
44cf49a43SJulian Elischer.\" Subject to the following obligations and disclaimer of warranty, use and
54cf49a43SJulian Elischer.\" redistribution of this software, in source or object code forms, with or
64cf49a43SJulian Elischer.\" without modifications are expressly permitted by Whistle Communications;
74cf49a43SJulian Elischer.\" provided, however, that:
84cf49a43SJulian Elischer.\" 1. Any and all reproductions of the source or object code must include the
94cf49a43SJulian Elischer.\"    copyright notice above and the following disclaimer of warranties; and
104cf49a43SJulian Elischer.\" 2. No rights are granted, in any manner or form, to use Whistle
114cf49a43SJulian Elischer.\"    Communications, Inc. trademarks, including the mark "WHISTLE
124cf49a43SJulian Elischer.\"    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
134cf49a43SJulian Elischer.\"    such appears in the above copyright notice or in the software.
144cf49a43SJulian Elischer.\"
154cf49a43SJulian Elischer.\" THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
164cf49a43SJulian Elischer.\" TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
174cf49a43SJulian Elischer.\" REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
184cf49a43SJulian Elischer.\" INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
194cf49a43SJulian Elischer.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
204cf49a43SJulian Elischer.\" WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
214cf49a43SJulian Elischer.\" REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
224cf49a43SJulian Elischer.\" SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
234cf49a43SJulian Elischer.\" IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
244cf49a43SJulian Elischer.\" RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
254cf49a43SJulian Elischer.\" WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
264cf49a43SJulian Elischer.\" PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
274cf49a43SJulian Elischer.\" SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
284cf49a43SJulian Elischer.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
294cf49a43SJulian Elischer.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
304cf49a43SJulian Elischer.\" THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
314cf49a43SJulian Elischer.\" OF SUCH DAMAGE.
324cf49a43SJulian Elischer.\"
33eddc45e7SJeroen Ruigrok van der Werven.\" Author: Archie Cobbs <archie@FreeBSD.org>
344cf49a43SJulian Elischer.\" $Whistle: ng_ppp.8,v 1.3 1999/01/25 23:46:27 archie Exp $
354cf49a43SJulian Elischer.\"
36c60bda17SJoel Dahl.Dd November 13, 2012
37bec35b9aSArchie Cobbs.Dt NG_PPP 4
383d45e180SRuslan Ermilov.Os
394cf49a43SJulian Elischer.Sh NAME
404cf49a43SJulian Elischer.Nm ng_ppp
4110c2a9dbSArchie Cobbs.Nd PPP protocol netgraph node type
424cf49a43SJulian Elischer.Sh SYNOPSIS
43fbad9e2dSRuslan Ermilov.In sys/types.h
4432eef9aeSRuslan Ermilov.In netgraph/ng_ppp.h
454cf49a43SJulian Elischer.Sh DESCRIPTION
464cf49a43SJulian ElischerThe
474cf49a43SJulian Elischer.Nm ppp
48b5e7e999SRuslan Ermilovnode type performs multiplexing for the PPP protocol.
49b5e7e999SRuslan ErmilovIt handles only packets that contain data, and forwards protocol negotiation
5010c2a9dbSArchie Cobbsand control packets to a separate controlling entity (e.g., a
51b5e7e999SRuslan Ermilovuser-land daemon).
52b5e7e999SRuslan ErmilovThis approach combines the fast dispatch of
5310c2a9dbSArchie Cobbskernel implementations with the configuration flexibility of a
54b5e7e999SRuslan Ermilovuser-land implementations.
55b5e7e999SRuslan ErmilovThe PPP node type directly supports
569dcab530SArchie Cobbsmulti-link PPP, Van Jacobson compression, PPP compression, PPP
57b5e7e999SRuslan Ermilovencryption, and the IP, IPX, and AppleTalk protocols.
58b5e7e999SRuslan ErmilovA single PPP node corresponds to one PPP multi-link bundle.
59d1f183b5SArchie Cobbs.Pp
60d1f183b5SArchie CobbsThere is a separate hook for each PPP link in the bundle, plus
61d1f183b5SArchie Cobbsseveral hooks corresponding to the directly supported protocols.
62d1f183b5SArchie CobbsFor compression and encryption, separate attached nodes are required
63b5e7e999SRuslan Ermilovto do the actual work.
64b5e7e999SRuslan ErmilovThe node type used will of course depend on the algorithm negotiated.
65b5e7e999SRuslan ErmilovThere is also a
66d1f183b5SArchie Cobbs.Dv bypass
67d1f183b5SArchie Cobbshook which is used to handle any protocol not directly supported
68b5e7e999SRuslan Ermilovby the node.
69b5e7e999SRuslan ErmilovThis includes all of the control protocols: LCP, IPCP,
70b5e7e999SRuslan ErmilovCCP, etc.
71b5e7e999SRuslan ErmilovTypically this node is connected to a user-land daemon via a
72bec35b9aSArchie Cobbs.Xr ng_socket 4
73d1f183b5SArchie Cobbstype node.
7410c2a9dbSArchie Cobbs.Sh ENABLING FUNCTIONALITY
7510c2a9dbSArchie CobbsIn general, the PPP node enables a specific link or functionality when
7610c2a9dbSArchie Cobbs(a) a
7710c2a9dbSArchie Cobbs.Dv NGM_PPP_SET_CONFIG
7810c2a9dbSArchie Cobbsmessage has been received which enables it, and
7910c2a9dbSArchie Cobbs(b) the corresponding hook(s) are connected.
8010c2a9dbSArchie CobbsThis allows the controlling entity to use either method (a) or (b)
8110c2a9dbSArchie Cobbs(or both) to control the node's behavior.
82d1f183b5SArchie CobbsWhen a link is connected but disabled, traffic can still flow on
83d1f183b5SArchie Cobbsthe link via the
84d1f183b5SArchie Cobbs.Dv bypass
85d1f183b5SArchie Cobbshook (see below).
8610c2a9dbSArchie Cobbs.Sh LINK HOOKS
8710c2a9dbSArchie CobbsDuring normal operation, the individual PPP links are connected to hooks
8810c2a9dbSArchie Cobbs.Dv link0 ,
8910c2a9dbSArchie Cobbs.Dv link1 ,
905203edcdSRuslan Ermilovetc.
915203edcdSRuslan ErmilovUp to
9210c2a9dbSArchie Cobbs.Dv NG_PPP_MAX_LINKS
9310c2a9dbSArchie Cobbslinks are supported.
9410c2a9dbSArchie CobbsThese device-independent hooks transmit and receive full PPP
9571cb548dSArchie Cobbsframes, which include the PPP protocol, address, control, and
9671cb548dSArchie Cobbsinformation fields, but no checksum or other link-specific fields.
9771cb548dSArchie Cobbs.Pp
9810c2a9dbSArchie CobbsOn outgoing frames, when protocol compression
9910c2a9dbSArchie Cobbshas been enabled and the protocol number is suitable for compression,
10010c2a9dbSArchie Cobbsthe protocol field will be compressed (i.e., sent as one byte
101b5e7e999SRuslan Ermilovinstead of two).
102b5e7e999SRuslan ErmilovEither compressed or uncompressed protocol fields
103b5e7e999SRuslan Ermilovare accepted on incoming frames.
104b5e7e999SRuslan ErmilovSimilarly, if address and control
10571cb548dSArchie Cobbsfield compression has been enabled for the link, the address and
10671cb548dSArchie Cobbscontrol fields will be omitted (except for LCP frames as required
107b5e7e999SRuslan Ermilovby the standards).
108b5e7e999SRuslan ErmilovIncoming frames have the address and control fields
10971cb548dSArchie Cobbsstripped automatically if present.
1104cf49a43SJulian Elischer.Pp
11110c2a9dbSArchie CobbsSince all negotiation is handled outside the PPP node, the links
11210c2a9dbSArchie Cobbsshould not be connected and enabled until the corresponding link
11310c2a9dbSArchie Cobbshas reached the network phase (i.e., LCP negotiation and authentication
11410c2a9dbSArchie Cobbshave completed successfully) and the PPP node has been informed of
11510c2a9dbSArchie Cobbsthe link parameters via the
11610c2a9dbSArchie Cobbs.Dv NGM_PPP_LINK_CONFIG
11710c2a9dbSArchie Cobbsmessage.
118d1f183b5SArchie Cobbs.Pp
119d1f183b5SArchie CobbsWhen a link is connected but disabled, all received frames are forwarded
120d1f183b5SArchie Cobbsdirectly out the
121d1f183b5SArchie Cobbs.Dv bypass
122d1f183b5SArchie Cobbshook, and conversely, frames may be transmitted via the
123d1f183b5SArchie Cobbs.Dv bypass
124b5e7e999SRuslan Ermilovhook as well.
125b5e7e999SRuslan ErmilovThis mode is appropriate for the link authentication phase.
126d1f183b5SArchie CobbsAs soon as the link is enabled, the PPP node will
127d1f183b5SArchie Cobbsbegin processing frames received on the link.
12810c2a9dbSArchie Cobbs.Sh COMPRESSION AND ENCRYPTION
12910c2a9dbSArchie CobbsCompression is supported via two hooks,
13010c2a9dbSArchie Cobbs.Dv compress
13110c2a9dbSArchie Cobbsand
13210c2a9dbSArchie Cobbs.Dv decompress .
13350928713SGleb SmirnoffCompression and decompression can be enabled by toggling the
13450928713SGleb Smirnoff.Vt enableCompression
13550928713SGleb Smirnoffand
13650928713SGleb Smirnoff.Vt enableDecompression
13750928713SGleb Smirnofffields of the node configuration structure.
13850928713SGleb Smirnoff(See below.)
13950928713SGleb SmirnoffIf
14050928713SGleb Smirnoff.Vt enableCompression
14150928713SGleb Smirnoffis set to
14250928713SGleb Smirnoff.Dv NG_PPP_COMPRESS_SIMPLE ,
14350928713SGleb Smirnoffthen all outgoing frames are sent to the
14450928713SGleb Smirnoff.Dv compress
14550928713SGleb Smirnoffhook and all packets received on this hook are expected to be
14650928713SGleb Smirnoffcompressed, so the COMPD tag is put on them unconditionally.
14750928713SGleb SmirnoffIf
14850928713SGleb Smirnoff.Vt enableCompression
14950928713SGleb Smirnoffis set to
15050928713SGleb Smirnoff.Dv NG_PPP_COMPRESS_FULL ,
15150928713SGleb Smirnoffthen packets received on the
15250928713SGleb Smirnoff.Dv compress
15350928713SGleb Smirnoffhook are resent as is.
15450928713SGleb SmirnoffThe compressor node should put the tag, if the packet was compressed.
15550928713SGleb SmirnoffIf
15650928713SGleb Smirnoff.Vt enableDecompression
15750928713SGleb Smirnoffis set to
15850928713SGleb Smirnoff.Dv NG_PPP_DECOMPRESS_SIMPLE ,
15950928713SGleb Smirnoffthen the node will sent to the
16010c2a9dbSArchie Cobbs.Dv decompress
16150928713SGleb Smirnoffhook only those frames, that are marked with the COMPD tag.
16250928713SGleb SmirnoffIf
16350928713SGleb Smirnoff.Vt enableDecompression
16450928713SGleb Smirnoffis set to
16550928713SGleb Smirnoff.Dv NG_PPP_DECOMPRESS_FULL ,
16650928713SGleb Smirnoffthen the node will sent all incoming packets to the
16750928713SGleb Smirnoff.Dv decompress
16850928713SGleb Smirnoffhook.
16950928713SGleb SmirnoffCompression and decompression can be completely disabled by setting the
17050928713SGleb Smirnoff.Vt enableCompression
17150928713SGleb Smirnoffand
17250928713SGleb Smirnoff.Vt enableDecompression
17350928713SGleb Smirnofffields to the
17450928713SGleb Smirnoff.Dv NG_PPP_COMPRESS_NONE
17550928713SGleb Smirnoffand
17650928713SGleb Smirnoff.Dv NG_PPP_DECOMPRESS_NONE ,
17750928713SGleb Smirnoffrespectively.
17810c2a9dbSArchie Cobbs.Pp
17910c2a9dbSArchie CobbsEncryption works exactly analogously via the
18010c2a9dbSArchie Cobbs.Dv encrypt
18110c2a9dbSArchie Cobbsand
18210c2a9dbSArchie Cobbs.Dv decrypt
183b5e7e999SRuslan Ermilovnodes.
184b5e7e999SRuslan ErmilovData is always compressed before being encrypted,
18510c2a9dbSArchie Cobbsand decrypted before being decompressed.
18610c2a9dbSArchie Cobbs.Pp
18710c2a9dbSArchie CobbsOnly bundle-level compression and encryption is directly supported;
18810c2a9dbSArchie Cobbslink-level compression and encryption can be handled transparently
18910c2a9dbSArchie Cobbsby downstream nodes.
190dd1e305cSArchie Cobbs.Sh VAN JACOBSON COMPRESSION
19110c2a9dbSArchie CobbsWhen all of the
19210c2a9dbSArchie Cobbs.Dv vjc_ip ,
19310c2a9dbSArchie Cobbs.Dv vjc_vjcomp ,
19410c2a9dbSArchie Cobbs.Dv vjc_vjuncomp ,
19510c2a9dbSArchie Cobbsand
19610c2a9dbSArchie Cobbs.Dv vjc_vjip
19710c2a9dbSArchie Cobbshooks are connected, and the corresponding configuration flag is
1989dcab530SArchie Cobbsenabled, Van Jacobson compression and/or decompression will become active.
19910c2a9dbSArchie CobbsNormally these hooks connect to the corresponding hooks of a single
200bec35b9aSArchie Cobbs.Xr ng_vjc 4
2015203edcdSRuslan Ermilovnode.
2025203edcdSRuslan ErmilovThe PPP node is compatible with the
20351291597SJulian Elischer.Dq pass through
20451291597SJulian Elischermodes of the
205bec35b9aSArchie Cobbs.Xr ng_vjc 4
20610c2a9dbSArchie Cobbsnode type.
20710c2a9dbSArchie Cobbs.Sh BYPASS HOOK
20810c2a9dbSArchie CobbsWhen a frame is received on a link with an unsupported protocol,
20910c2a9dbSArchie Cobbsor a protocol which is disabled or for which the corresponding hook
21010c2a9dbSArchie Cobbsis unconnected, the PPP node forwards the frame out the
2114cf49a43SJulian Elischer.Dv bypass
212b5e7e999SRuslan Ermilovhook, prepended with a four byte prefix.
213b5e7e999SRuslan ErmilovThis first two bytes of
21410c2a9dbSArchie Cobbsthe prefix indicate the link number on which the frame was received
21510c2a9dbSArchie Cobbs(in network order).
21610c2a9dbSArchie CobbsFor such frames received over the bundle (i.e., encapsulated in the
21710c2a9dbSArchie Cobbsmulti-link protocol), the special link number
21810c2a9dbSArchie Cobbs.Dv NG_PPP_BUNDLE_LINKNUM
2195203edcdSRuslan Ermilovis used.
2205203edcdSRuslan ErmilovAfter the two byte link number is the two byte PPP protocol number
22110c2a9dbSArchie Cobbs(also in network order).
22210c2a9dbSArchie CobbsThe PPP protocol number is two bytes long even if the original frame
22310c2a9dbSArchie Cobbswas protocol compressed.
2244cf49a43SJulian Elischer.Pp
22510c2a9dbSArchie CobbsConversely, any data written to the
2264cf49a43SJulian Elischer.Dv bypass
227b5e7e999SRuslan Ermilovhook is assumed to be in this same format.
228b5e7e999SRuslan ErmilovThe four byte header is
22910c2a9dbSArchie Cobbsstripped off, the PPP protocol number is prepended (possibly compressed),
23010c2a9dbSArchie Cobbsand the frame is delivered over the desired link.
23110c2a9dbSArchie CobbsIf the link number is
23210c2a9dbSArchie Cobbs.Dv NG_PPP_BUNDLE_LINKNUM
23310c2a9dbSArchie Cobbsthe frame will be delivered over the multi-link bundle; or, if multi-link
23410c2a9dbSArchie Cobbsis disabled, over the (single) PPP link.
23510c2a9dbSArchie Cobbs.Pp
236a3fef8dfSArchie CobbsTypically when the controlling entity receives an unexpected packet on the
237a3fef8dfSArchie Cobbs.Dv bypass
23836a142c4SRuslan Ermilovhook it responds either by dropping the frame (if it is not ready for
2390227791bSRuslan Ermilovthe protocol) or with an LCP protocol reject (if it does not recognize
24010c2a9dbSArchie Cobbsor expect the protocol).
24110c2a9dbSArchie Cobbs.Sh MULTILINK OPERATION
24210c2a9dbSArchie CobbsTo enable multi-link PPP, the corresponding configuration flag must be set
243b5e7e999SRuslan Ermilovand at least one link connected.
244b5e7e999SRuslan ErmilovThe PPP node will not allow more than
24510c2a9dbSArchie Cobbsone link to be connected if multi-link is not enabled, nor will it allow
24610c2a9dbSArchie Cobbscertain multi-link settings to be changed while multi-link operation is
24710c2a9dbSArchie Cobbsactive (e.g., short sequence number header format).
24810c2a9dbSArchie Cobbs.Pp
249b5e7e999SRuslan ErmilovSince packets are sent as fragments across multiple individual links,
25010c2a9dbSArchie Cobbsit is important that when a link goes down the PPP node is notified
25110c2a9dbSArchie Cobbsimmediately, either by disconnecting the corresponding hook or disabling
25210c2a9dbSArchie Cobbsthe link via the
25310c2a9dbSArchie Cobbs.Dv NGM_PPP_SET_CONFIG
25410c2a9dbSArchie Cobbscontrol message.
25510c2a9dbSArchie Cobbs.Pp
25610c2a9dbSArchie CobbsEach link has configuration parameters for latency (specified in
2577f9d26bdSMike Pritchardmilliseconds) and bandwidth (specified in tens of bytes per second).
25810c2a9dbSArchie CobbsThe PPP node can be configured for
25910c2a9dbSArchie Cobbs.Em round-robin
26010c2a9dbSArchie Cobbsor
26110c2a9dbSArchie Cobbs.Em optimized
26210c2a9dbSArchie Cobbspacket delivery.
26310c2a9dbSArchie Cobbs.Pp
26410c2a9dbSArchie CobbsWhen configured for round-robin delivery, the latency and bandwidth
26510c2a9dbSArchie Cobbsvalues are ignored and the PPP node simply sends each frame as a
26610c2a9dbSArchie Cobbssingle fragment, alternating frames across all the links in the
267b5e7e999SRuslan Ermilovbundle.
268b5e7e999SRuslan ErmilovThis scheme has the advantage that even if one link fails
269b5e7e999SRuslan Ermilovsilently, some packets will still get through.
270b5e7e999SRuslan ErmilovIt has the disadvantage
27110c2a9dbSArchie Cobbsof sub-optimal overall bundle latency, which is important for
27210c2a9dbSArchie Cobbsinteractive response time, and sub-optimal overall bundle bandwidth
27310c2a9dbSArchie Cobbswhen links with different bandwidths exist in the same bundle.
27410c2a9dbSArchie Cobbs.Pp
27510c2a9dbSArchie CobbsWhen configured for optimal delivery, the PPP node distributes the
27610c2a9dbSArchie Cobbspacket across the links in a way that minimizes the time it takes
277b5e7e999SRuslan Ermilovfor the completed packet to be received by the far end.
278b5e7e999SRuslan ErmilovThis involves taking into account each link's latency, bandwidth, and
279b5e7e999SRuslan Ermilovcurrent queue length.
280b5e7e999SRuslan ErmilovTherefore these numbers should be configured as accurately as possible.
281b5e7e999SRuslan ErmilovThe algorithm does require
28210c2a9dbSArchie Cobbssome computation, so may not be appropriate for very slow machines
28310c2a9dbSArchie Cobbsand/or very fast links.
28410c2a9dbSArchie Cobbs.Pp
28510c2a9dbSArchie CobbsAs a special case, if all links have identical latency and bandwidth,
28610c2a9dbSArchie Cobbsthen the above algorithm is disabled (because it is unnecessary)
28710c2a9dbSArchie Cobbsand the PPP node simply fragments frames into equal sized portions
28810c2a9dbSArchie Cobbsacross all of the links.
2894cf49a43SJulian Elischer.Sh HOOKS
2904cf49a43SJulian ElischerThis node type supports the following hooks:
291c60bda17SJoel Dahl.Bl -tag -width ".Va vjc_vjuncomp"
292c60bda17SJoel Dahl.It Va link<N>
29310c2a9dbSArchie CobbsIndividual PPP link number
29410c2a9dbSArchie Cobbs.Dv <N>
295c60bda17SJoel Dahl.It Va compress
29610c2a9dbSArchie CobbsConnection to compression engine
297c60bda17SJoel Dahl.It Va decompress
29810c2a9dbSArchie CobbsConnection to decompression engine
299c60bda17SJoel Dahl.It Va encrypt
30010c2a9dbSArchie CobbsConnection to encryption engine
301c60bda17SJoel Dahl.It Va decrypt
30210c2a9dbSArchie CobbsConnection to decryption engine
303c60bda17SJoel Dahl.It Va vjc_ip
30410c2a9dbSArchie CobbsConnection to
305bec35b9aSArchie Cobbs.Xr ng_vjc 4
30610c2a9dbSArchie Cobbs.Dv ip
30710c2a9dbSArchie Cobbshook
308c60bda17SJoel Dahl.It Va vjc_vjcomp
30910c2a9dbSArchie CobbsConnection to
310bec35b9aSArchie Cobbs.Xr ng_vjc 4
31110c2a9dbSArchie Cobbs.Dv vjcomp
31210c2a9dbSArchie Cobbshook
313c60bda17SJoel Dahl.It Va vjc_vjuncomp
31410c2a9dbSArchie CobbsConnection to
315bec35b9aSArchie Cobbs.Xr ng_vjc 4
31610c2a9dbSArchie Cobbs.Dv vjuncomp
31710c2a9dbSArchie Cobbshook
318c60bda17SJoel Dahl.It Va vjc_vjip
31910c2a9dbSArchie CobbsConnection to
320bec35b9aSArchie Cobbs.Xr ng_vjc 4
32110c2a9dbSArchie Cobbs.Dv vjip
32210c2a9dbSArchie Cobbshook
323c60bda17SJoel Dahl.It Va inet
32410c2a9dbSArchie CobbsIP packet data
325c60bda17SJoel Dahl.It Va ipv6
3269e2e2b9cSAlexander MotinIPv6 packet data
327c60bda17SJoel Dahl.It Va atalk
32810c2a9dbSArchie CobbsAppleTalk packet data
329c60bda17SJoel Dahl.It Va ipx
33010c2a9dbSArchie CobbsIPX packet data
331c60bda17SJoel Dahl.It Va bypass
33210c2a9dbSArchie CobbsBypass hook; frames have a four byte header consisting of
33310c2a9dbSArchie Cobbsa link number and a PPP protocol number.
3344cf49a43SJulian Elischer.El
3354cf49a43SJulian Elischer.Sh CONTROL MESSAGES
3364cf49a43SJulian ElischerThis node type supports the generic control messages, plus the following:
3374cf49a43SJulian Elischer.Bl -tag -width foo
338c60bda17SJoel Dahl.It Dv NGM_PPP_SET_CONFIG Pq Ic setconfig
339b5e7e999SRuslan ErmilovThis command configures all aspects of the node.
340b5e7e999SRuslan ErmilovThis includes enabling
3419dcab530SArchie Cobbsmulti-link PPP, encryption, compression, Van Jacobson compression, and IP,
3424e0768b6SBjoern A. ZeebIPv6, AppleTalk, and IPX packet delivery.
343b5e7e999SRuslan ErmilovIt includes per-link configuration,
34410c2a9dbSArchie Cobbsincluding enabling the link, setting latency and bandwidth parameters,
345b5e7e999SRuslan Ermilovand enabling protocol field compression.
346b5e7e999SRuslan ErmilovNote that no link or functionality
34710c2a9dbSArchie Cobbsis active until the corresponding hook is also connected.
34810c2a9dbSArchie CobbsThis command takes a
3494e0768b6SBjoern A. Zeeb.Dv "struct ng_ppp_node_conf"
35071cb548dSArchie Cobbsas an argument:
3513f610476SRuslan Ermilov.Bd -literal -offset 0n
35271cb548dSArchie Cobbs/* Per-link config structure */
3534e0768b6SBjoern A. Zeebstruct ng_ppp_link_conf {
35471cb548dSArchie Cobbs  u_char    enableLink;     /* enable this link */
35571cb548dSArchie Cobbs  u_char    enableProtoComp;/* enable protocol field compression */
35671cb548dSArchie Cobbs  u_char    enableACFComp;  /* enable addr/ctrl field compression */
3576b99842aSEd Schouten  uint16_t  mru;            /* peer MRU */
3586b99842aSEd Schouten  uint32_t  latency;        /* link latency (in milliseconds) */
359c60bda17SJoel Dahl  uint32_t  bandwidth;      /* link bandwidth (in bytes/sec/10) */
36071cb548dSArchie Cobbs};
36171cb548dSArchie Cobbs
3624e0768b6SBjoern A. Zeeb/* Bundle config structure */
3634e0768b6SBjoern A. Zeebstruct ng_ppp_bund_conf {
3646b99842aSEd Schouten  uint16_t  mrru;                   /* multilink peer MRRU */
36571cb548dSArchie Cobbs  u_char    enableMultilink;        /* enable multilink */
36671cb548dSArchie Cobbs  u_char    recvShortSeq;           /* recv multilink short seq # */
36771cb548dSArchie Cobbs  u_char    xmitShortSeq;           /* xmit multilink short seq # */
36871cb548dSArchie Cobbs  u_char    enableRoundRobin;       /* xmit whole packets */
36971cb548dSArchie Cobbs  u_char    enableIP;               /* enable IP data flow */
3704e0768b6SBjoern A. Zeeb  u_char    enableIPv6;             /* enable IPv6 data flow */
37171cb548dSArchie Cobbs  u_char    enableAtalk;            /* enable AppleTalk data flow */
37271cb548dSArchie Cobbs  u_char    enableIPX;              /* enable IPX data flow */
37371cb548dSArchie Cobbs  u_char    enableCompression;      /* enable PPP compression */
37471cb548dSArchie Cobbs  u_char    enableDecompression;    /* enable PPP decompression */
37571cb548dSArchie Cobbs  u_char    enableEncryption;       /* enable PPP encryption */
37671cb548dSArchie Cobbs  u_char    enableDecryption;       /* enable PPP decryption */
37771cb548dSArchie Cobbs  u_char    enableVJCompression;    /* enable VJ compression */
37871cb548dSArchie Cobbs  u_char    enableVJDecompression;  /* enable VJ decompression */
3794e0768b6SBjoern A. Zeeb};
3804e0768b6SBjoern A. Zeeb
3814e0768b6SBjoern A. Zeebstruct ng_ppp_node_conf {
3824e0768b6SBjoern A. Zeeb  struct ng_ppp_bund_conf   bund;
3834e0768b6SBjoern A. Zeeb  struct ng_ppp_link_conf   links[NG_PPP_MAX_LINKS];
38471cb548dSArchie Cobbs};
38571cb548dSArchie Cobbs.Ed
386c60bda17SJoel Dahl.It Dv NGM_PPP_GET_CONFIG Pq Ic getconfig
38710c2a9dbSArchie CobbsReturns the current configuration as a
3884e0768b6SBjoern A. Zeeb.Dv "struct ng_ppp_node_conf" .
389c60bda17SJoel Dahl.It Dv NGM_PPP_GET_LINK_STATS Pq Ic getstats
39010c2a9dbSArchie CobbsThis command takes a two byte link number as an argument and returns a
39110c2a9dbSArchie Cobbs.Dv "struct ng_ppp_link_stat"
3925203edcdSRuslan Ermilovcontaining statistics for the corresponding link.
3935203edcdSRuslan ErmilovHere
39410c2a9dbSArchie Cobbs.Dv NG_PPP_BUNDLE_LINKNUM
39510c2a9dbSArchie Cobbsis a valid link number corresponding to the multi-link bundle.
396c60bda17SJoel Dahl.It Dv NGM_PPP_GET_LINK_STATS64 Pq Ic getstats64
397d6fe462aSAlexander MotinSame as NGM_PPP_GET_LINK_STATS but returns
398d6fe462aSAlexander Motin.Dv "struct ng_ppp_link_stat64"
399d6fe462aSAlexander Motincontaining 64bit counters.
400c60bda17SJoel Dahl.It Dv NGM_PPP_CLR_LINK_STATS Pq Ic clrstats
40110c2a9dbSArchie CobbsThis command takes a two byte link number as an argument and
402d1f183b5SArchie Cobbsclears the statistics for that link.
403c60bda17SJoel Dahl.It Dv NGM_PPP_GETCLR_LINK_STATS Pq Ic getclrstats
404d1f183b5SArchie CobbsSame as
405d1f183b5SArchie Cobbs.Dv NGM_PPP_GET_LINK_STATS ,
406d1f183b5SArchie Cobbsbut also atomically clears the statistics as well.
407c60bda17SJoel Dahl.It Dv NGM_PPP_GETCLR_LINK_STATS64 Pq Ic getclrstats64
408d6fe462aSAlexander MotinSame as NGM_PPP_GETCLR_LINK_STATS but returns
409d6fe462aSAlexander Motin.Dv "struct ng_ppp_link_stat64"
410d6fe462aSAlexander Motincontaining 64bit counters.
41110c2a9dbSArchie Cobbs.El
41210c2a9dbSArchie Cobbs.Pp
41310c2a9dbSArchie CobbsThis node type also accepts the control messages accepted by the
414bec35b9aSArchie Cobbs.Xr ng_vjc 4
4155203edcdSRuslan Ermilovnode type.
4165203edcdSRuslan ErmilovWhen received, these messages are simply forwarded to
41710c2a9dbSArchie Cobbsthe adjacent
418bec35b9aSArchie Cobbs.Xr ng_vjc 4
4195203edcdSRuslan Ermilovnode, if any.
4205203edcdSRuslan ErmilovThis is particularly useful when the individual
42171cb548dSArchie CobbsPPP links are able to generate
42271cb548dSArchie Cobbs.Dv NGM_VJC_RECV_ERROR
42371cb548dSArchie Cobbsmessages (see
424bec35b9aSArchie Cobbs.Xr ng_vjc 4
42571cb548dSArchie Cobbsfor a description).
4264cf49a43SJulian Elischer.Sh SHUTDOWN
4274cf49a43SJulian ElischerThis node shuts down upon receipt of a
4284cf49a43SJulian Elischer.Dv NGM_SHUTDOWN
4294cf49a43SJulian Elischercontrol message, or when all hooks have been disconnected.
4304cf49a43SJulian Elischer.Sh SEE ALSO
4314cf49a43SJulian Elischer.Xr netgraph 4 ,
432bec35b9aSArchie Cobbs.Xr ng_async 4 ,
433bec35b9aSArchie Cobbs.Xr ng_iface 4 ,
434bec35b9aSArchie Cobbs.Xr ng_mppc 4 ,
435bec35b9aSArchie Cobbs.Xr ng_pppoe 4 ,
436bec35b9aSArchie Cobbs.Xr ng_vjc 4 ,
437bec35b9aSArchie Cobbs.Xr ngctl 8
4384cf49a43SJulian Elischer.Rs
4394cf49a43SJulian Elischer.%A W. Simpson
4404cf49a43SJulian Elischer.%T "The Point-to-Point Protocol (PPP)"
4414cf49a43SJulian Elischer.%O RFC 1661
4424cf49a43SJulian Elischer.Re
44310c2a9dbSArchie Cobbs.Rs
44410c2a9dbSArchie Cobbs.%A K. Sklower
44510c2a9dbSArchie Cobbs.%A B. Lloyd
44610c2a9dbSArchie Cobbs.%A G. McGregor
44710c2a9dbSArchie Cobbs.%A D. Carr
44810c2a9dbSArchie Cobbs.%A T. Coradetti
44910c2a9dbSArchie Cobbs.%T "The PPP Multilink Protocol (MP)"
45010c2a9dbSArchie Cobbs.%O RFC 1990
45110c2a9dbSArchie Cobbs.Re
45251291597SJulian Elischer.Sh HISTORY
45351291597SJulian ElischerThe
45451291597SJulian Elischer.Nm
45551291597SJulian Elischernode type was implemented in
45651291597SJulian Elischer.Fx 4.0 .
45751291597SJulian Elischer.Sh AUTHORS
458*6c899950SBaptiste Daroussin.An Archie Cobbs Aq Mt archie@FreeBSD.org
459