Daniele Moro | 0f31291 | 2020-01-16 09:49:01 -0800 | [diff] [blame^] | 1 | # Copyright 2020-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | # Configuration file for PPP, using PPP over Ethernet |
| 16 | # See the manual page pppd(8) for information on all the options. |
| 17 | |
| 18 | # Use the pppoe program to send the ppp packets over the Ethernet link |
| 19 | # This line should work fine if this computer is the only one accessing |
| 20 | # the Internet through this DSL connection. This is the right line to use |
| 21 | # for most people. |
| 22 | pty "/usr/sbin/pppoe -I eth0 -T 80 -m 1452" |
| 23 | |
| 24 | # Assumes that your IP address is allocated dynamically |
| 25 | # by your DSL provider... |
| 26 | noipdefault |
| 27 | |
| 28 | # Use this connection as the default route. |
| 29 | # Comment out if you already have the correct default route installed. |
| 30 | defaultroute |
| 31 | |
| 32 | # Override any connect script that may have been set in /etc/ppp/options. |
| 33 | connect /bin/true |
| 34 | noauth |
| 35 | persist |
| 36 | mtu 1492 |
| 37 | |
| 38 | # RFC 2516, paragraph 7 mandates that the following options MUST NOT be |
| 39 | # requested and MUST be rejected if requested by the peer: |
| 40 | # Address-and-Control-Field-Compression (ACFC) |
| 41 | noaccomp |
| 42 | # Asynchronous-Control-Character-Map (ACCM) |
| 43 | default-asyncmap |
| 44 | |
| 45 | hide-password |
| 46 | lcp-echo-interval 20 |
| 47 | lcp-echo-failure 3 |
| 48 | |
| 49 | plugin rp-pppoe.so |
| 50 | nic-eth0 |
| 51 | nomagic |
| 52 | |
| 53 | user SEBA |
| 54 | password rocks |