• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/accel-pptpd/example/etc/ppp/
1###############################################################################
2# $Id: options.pptp,v 1.2 2005/08/20 13:16:38 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
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
31novj
32novjccomp
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
43require-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# }}}
52