summaryrefslogtreecommitdiffstats
path: root/libexec/pppoed/pppoed.8
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1999-11-21 23:39:14 +0000
committerbrian <brian@FreeBSD.org>1999-11-21 23:39:14 +0000
commit02ba553858208373f98eac864158104c98ee8d0c (patch)
treebf568940beb2438bd7afd3f1feda65ce45f9f384 /libexec/pppoed/pppoed.8
parent257703c14f8e6f30e188734cc44777626b976637 (diff)
downloadFreeBSD-src-02ba553858208373f98eac864158104c98ee8d0c.zip
FreeBSD-src-02ba553858208373f98eac864158104c98ee8d0c.tar.gz
pppoed(8) - a server to accept PPPoE connections
Diffstat (limited to 'libexec/pppoed/pppoed.8')
-rw-r--r--libexec/pppoed/pppoed.8169
1 files changed, 169 insertions, 0 deletions
diff --git a/libexec/pppoed/pppoed.8 b/libexec/pppoed/pppoed.8
new file mode 100644
index 0000000..da8038b
--- /dev/null
+++ b/libexec/pppoed/pppoed.8
@@ -0,0 +1,169 @@
+.\"-
+.\" Copyright (c) 1999 Brian Somers <brian@Awfulhak.org>
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\" notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\" notice, this list of conditions and the following disclaimer in the
+.\" documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.Dd November 8, 1999
+.Dt PPPOED 8
+.Os FreeBSD
+.Sh NAME
+.Nm pppoed
+.Nd handle incoming PPP over Ethernet connections
+.Sh SYNOPSIS
+.Nm pppoed
+.Op Fl Fd
+.Op Fl a Ar name
+.Op Fl e Ar exec
+.Op Fl p Ar provider
+.Ar interface
+.Sh DESCRIPTION
+The
+.Nm
+program listens to the given
+.Ar interface
+for PPP over Ethernet (PPPoE) service request packets, and actions them
+by negotiating a session then envoking a
+.Em PPP
+program. The negotiation is implemented by the
+.Dq pppoe
+netgraph node. See
+.Xr ng_pppoe 8
+for details.
+.Pp
+.Nm
+will only offer services to clients requesting services from the given
+.Ar provider ,
+which is taken as an empty name if not provided.
+If a provider name of
+.Dq \&*
+is given, any PPPoE requests will be offered service.
+.Pp
+The supplied
+.Ar name
+will be given as the access concentrator name when establishing the
+connection. If no
+.Ar name
+is given, the current base hostname is used.
+.Pp
+After receiving a request (PADI) from the PPPoE netgraph node,
+.Nm
+.Xr fork 2 Ns No s
+a child process and returns to service further requests. The child process
+offers service
+.Pq using Ar name
+and waits for a
+.Dv SUCCESS
+indication from the PPPoE node. On receipt of the SUCCESS indication,
+.Nm
+will execute
+.Pp
+.D1 Ic exec /usr/sbin/ppp -direct Ar provider
+.Pp
+as a shell sub-process. It is possible to specify another command using the
+.Ar exec
+argument. This is mandatory if
+.Ar provider
+is not given. The child process will have standard input and standard output
+attached to the same
+.Xr netgraph 4
+data socket
+.Pq see Xr ng_socket 8
+when started.
+.Pp
+Upon invocation,
+.Nm
+will attach a
+.Dq pppoe
+netgraph node to the relevant
+.Dq ether
+node using
+.Dq Ar interface Ns No \&:
+as the node name, and then connect that
+.Dq pppoe
+node to a local
+.Dq socket
+node. If the
+.Fl F
+flag has not been given,
+.Nm
+will then go into the background and disassociate itself from the controlling
+terminal. When the
+.Fl F
+flag is given,
+.Nm
+stays in the foreground.
+.Pp
+If the
+.Fl d
+flag is given, additional diagnostics are provided (see the
+.Sx DIAGNOSTICS
+section below).
+.Sh DIAGNOSTICS
+After creating the necessary
+.Xr netgraph 4
+nodes as described above,
+.Nm
+uses
+.Xr syslogd 8
+to report all incoming connections. If the
+.Fl d
+flag is given,
+.Nm
+will report on the child processes creation of a new netgraph socket, it's
+service offer and the invocation of the
+.Em PPP
+program.
+.Pp
+It is sometimes useful to add the following to
+.Pa /etc/syslog.conf :
+.Pp
+.Dl !pppoed
+.Dl *.* /var/log/pppoed.log
+.Pp
+and the following to
+.Pa /etc/newsyslog.conf :
+.Pp
+.Dl /var/log/pppoed.log 640 3 100 * Z
+.Pp
+.Sh SEE ALSO
+.Xr netgraph 4 ,
+.Xr syslog.conf 5 ,
+.Xr ng_pppoe 8 ,
+.Xr ng_socket 8 ,
+.Xr ppp 8 ,
+.Xr syslogd 8
+.Sh BUGS
+If another netgraph node is using the given interface,
+.Nm
+will fail to start. This is because
+.Xr netgraph 4
+does not currently allow node chaining. This may change in the future.
+.Sh HISTORY
+The
+.Nm
+program was written by
+.An Brian Somers Aq brian@Awfulhak.org
+and first appeared in
+.Fx 3.4 .
OpenPOWER on IntegriCloud