minidlna support now Samsung TV C550/C650 (thx amir909)
[tomato.git] / release / src / router / pptp-client / options.pptp
blob8abaf791a53fb889f8b2a5bd2d3198be6a380da1
1 ###############################################################################
2 # $Id: options.pptp,v 1.2 2005/08/20 13:16:38 quozl Exp $
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".
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 ###############################################################################
15 # Lock the port
16 lock
18 # Authentication
19 # We don't need the tunnel server to authenticate itself
20 noauth
22 # We won't do EAP, CHAP, or MSCHAP, but we will accept MSCHAP-V2
23 refuse-eap
24 refuse-chap
25 refuse-mschap
27 # Compression
28 # Turn off compression protocols we know won't be used
29 nobsdcomp
30 nodeflate
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)
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
41 #require-mppe-128
42 # }}}
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 # }}}