Magellan Linux

Annotation of /trunk/ppp/provider.example

Parent Directory Parent Directory | Revision Log Revision Log


Revision 310 - (hide annotations) (download)
Sun Aug 19 02:52:15 2007 UTC (16 years, 8 months ago) by niro
File size: 1359 byte(s)
-added a provider example

1 niro 310 # kernel space PPPoE driver configuration
2     #
3     # See the manual page pppd(8) for information on all the options.
4    
5     # MUST CHANGE: Uncomment the following line, replacing the user@provider.net
6     # by the DSL user name given to your by your DSL provider.
7     # There should be a matching entry with the password in /etc/ppp/pap-secrets
8     # and/or /etc/ppp/chap-secrets.
9     #user "myusername@myprovider.net"
10    
11     #linkname provider
12     #debug
13    
14     # Load the pppoe plugin. Change the ethernet interface name if needed.
15     plugin rp-pppoe.so
16     eth0
17    
18     # Assumes that your IP address is allocated dynamically by the ISP.
19     noipdefault
20     # Try to get the name server addresses from the ISP.
21     usepeerdns
22     # Use this connection as the default route.
23     # Comment out if you already have the correct default route installed.
24     defaultroute
25    
26     # Make sure that sensitive data does not get into the logs
27     hide-password
28    
29     # Peer should be alive
30     lcp-echo-interval 20
31     lcp-echo-failure 3
32    
33     # Makes pppd "dial again" when the connection is lost.
34     persist
35    
36     # Do not ask the remote to authenticate.
37     noauth
38    
39     # RFC 2516, paragraph 7 mandates that the following options MUST NOT be
40     # requested and MUST be rejected if requested by the peer:
41     # Address-and-Control-Field-Compression (ACFC)
42     noaccomp
43     # Asynchronous-Control-Character-Map (ACCM)
44     default-asyncmap
45    
46     # Do not try to negotiate other kinds of compression.
47     nopcomp
48     noccp
49     novj