OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / user / pptp / options.pptp
1 ###############################################################################
2 # $Id: options.pptp,v 1.3 2006/03/26 23:11:05 quozl Exp $
3 #
4 # Sample PPTP PPP options file /etc/ppp/options.pptp
5 # Options used by PPP when a connection is made by a PPTP client.
6 # This file can be referred to by an /etc/ppp/peers file for the tunnel.
7 # Changes are effective on the next connection.  See "man pppd".
8 #
9 # You are expected to change this file to suit your system.  As
10 # packaged, it requires PPP 2.4.2 or later from http://ppp.samba.org/
11 # and the kernel MPPE module available from the CVS repository also on
12 # http://ppp.samba.org/, which is packaged for DKMS as kernel_ppp_mppe.
13 ###############################################################################
14
15 # Lock the port
16 lock
17
18 # Authentication
19 # We don't need the tunnel server to authenticate itself
20 noauth
21
22 # We won't do PAP, EAP, CHAP, or MSCHAP, but we will accept MSCHAP-V2
23 # (you may need to remove these refusals if the server is not using MPPE)
24 refuse-pap
25 refuse-eap
26 refuse-chap
27 refuse-mschap
28
29 # Compression
30 # Turn off compression protocols we know won't be used
31 nobsdcomp
32 nodeflate
33
34 # Encryption
35 # (There have been multiple versions of PPP with encryption support,
36 # choose with of the following sections you will use.  Note that MPPE
37 # requires the use of MSCHAP-V2 during authentication)
38
39 # http://ppp.samba.org/ the PPP project version of PPP by Paul Mackarras
40 # ppp-2.4.2 or later with MPPE only, kernel module ppp_mppe.o
41 # {{{
42 # Require MPPE 128-bit encryption
43 #require-mppe-128
44 # }}}
45
46 # http://polbox.com/h/hs001/ fork from PPP project by Jan Dubiec
47 # ppp-2.4.2 or later with MPPE and MPPC, kernel module ppp_mppe_mppc.o
48 # {{{
49 # Require MPPE 128-bit encryption
50 #mppe required,stateless
51 # }}}