Daniele Moro | c3aa653 | 2019-11-18 16:24:31 -0800 | [diff] [blame] | 1 | # Copyright 2019-present Open Networking Foundation |
| 2 | # |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | |
| 5 | # Originally created by Jim Knoble <jmknoble@mercury.interpath.net> |
| 6 | # Modified for Debian by alvar Bray <alvar@meiko.co.uk> |
| 7 | # Modified for PPP Server setup by Christoph Lameter <clameter@debian.org> |
| 8 | # Modified for SEBA in a Box by Open Networking Foundation |
| 9 | |
| 10 | # To quickly see what options are active in this file, use this command: |
| 11 | # egrep -v '#|^ *$' /etc/ppp/pppoe-options |
| 12 | |
| 13 | # Use the modem control lines. On Ultrix, this option implies hardware |
| 14 | # flow control, as for the crtscts option. (This option is not fully |
| 15 | # implemented.) |
| 16 | modem |
| 17 | |
| 18 | # If this option is given, pppd will send an LCP echo-request frame to the |
| 19 | # peer every n seconds. Normally the peer should respond to the echo-request |
| 20 | # by sending an echo-reply. This option can be used with the |
| 21 | # lcp-echo-failure option to detect that the peer is no longer connected. |
| 22 | lcp-echo-interval 5 |
| 23 | |
| 24 | # If this option is given, pppd will presume the peer to be dead if n |
| 25 | # LCP echo-requests are sent without receiving a valid LCP echo-reply. |
| 26 | # If this happens, pppd will terminate the connection. Use of this |
| 27 | # option requires a non-zero value for the lcp-echo-interval parameter. |
| 28 | # This option can be used to enable pppd to terminate after the physical |
| 29 | # connection has been broken (e.g., the modem has hung up) in |
| 30 | # situations where no hardware modem control lines are available. |
| 31 | lcp-echo-failure 12 |
| 32 | |
| 33 | # Disable the IPXCP and IPX protocols. |
| 34 | noipx |
| 35 | |
| 36 | # Disable negotiation of Van Jacobson style IP header compression (use |
| 37 | # default, i.e. no compression). |
| 38 | -vj |
| 39 | |
| 40 | # Specify which DNS Servers the incoming Win95 or WinNT Connection should use |
| 41 | # Two Servers can be remotely configured |
| 42 | ms-dns 8.8.8.8 |
| 43 | ms-dns 8.8.4.4 |
| 44 | |
| 45 | # Set the interface netmask to <n>, a 32 bit netmask in "decimal dot" |
| 46 | # notation (e.g. 255.255.255.0). |
| 47 | netmask 255.255.255.0 |
| 48 | |
| 49 | # Other options |
| 50 | asyncmap 0 |
| 51 | crtscts |
| 52 | lock |
| 53 | hide-password |
| 54 | require-chap |
| 55 | nobsdcomp |
| 56 | noccp |
| 57 | novj |
| 58 | |
| 59 | # Increase debugging level (same as -d). If this option is given, pppd |
| 60 | # will log the contents of all control packets sent or received in a |
| 61 | # readable form. The packets are logged through syslog with facility |
| 62 | # daemon and level debug. |
| 63 | debug |
| 64 | logfile /var/log/pppoe-server-log |