1###############################################################################
2# $Id: options.pptp,v 1.1 2005/02/18 01:40:23 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
16lock
17
18# Authentication
19# We don't need the tunnel server to authenticate itself
20noauth
21
22# We won't do EAP, CHAP, or MSCHAP, but we will accept MSCHAP-V2
23refuse-eap
24refuse-chap
25refuse-mschap
26
27# Compression
28# Turn off compression protocols we know won't be used
29nobsdcomp
30nodeflate
31
32# Encryption
33# (There have been multiple versions of PPP with encryption support,
34# choose with of the following sections you will use.  Note that MPPE
35# requires the use of MSCHAP-V2 during authentication)
36
37# http://ppp.samba.org/ the PPP project version of PPP by Paul Mackarras
38# ppp-2.4.2 or later with MPPE only, kernel module ppp_mppe.o
39# {{{
40# Require MPPE 128-bit encryption
41require-mppe-128
42# }}}
43
44# http://polbox.com/h/hs001/ fork from PPP project by Jan Dubiec
45# ppp-2.4.2 or later with MPPE and MPPC, kernel module ppp_mppe_mppc.o
46# {{{
47# Require MPPE 128-bit encryption
48#mppe required,stateless
49# }}}
50