diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-02-22 12:31:47 +0100 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-23 15:34:03 +0900 |
commit | 77cd84aae90b8d04f56dfb5b738a58900cd4c0cc (patch) | |
tree | 6d5d20934590afbda5e278bdbe27d73a7ca2006d /doc/misc/pptp.txt | |
parent | a5b1b4e3e2c717ae1d392fdf37d7ac0d1f77c51d (diff) | |
download | kvpnc-77cd84aae90b8d04f56dfb5b738a58900cd4c0cc.tar.gz kvpnc-77cd84aae90b8d04f56dfb5b738a58900cd4c0cc.zip |
Drop automake build support.
Add basic build instructions.
Rework of the README, INSTALL and help page.
Remove empty folder templates and the NEWS file.
Delete the INSTALL.debian and INSTALL.gentoo files.
Create the doc/misc folder to hold lot of config
and/or readme files.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit 9b99335373bb5e06cfb2cdbbff4f6d45b3d0edda)
Diffstat (limited to 'doc/misc/pptp.txt')
-rw-r--r-- | doc/misc/pptp.txt | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/doc/misc/pptp.txt b/doc/misc/pptp.txt new file mode 100644 index 0000000..24bdc2f --- /dev/null +++ b/doc/misc/pptp.txt @@ -0,0 +1,82 @@ +requirements: +- mppe patched kernel (http://www.polbox.com/h/hs001/) +- pptp client (http://pptpclient.sourceforge.net/) + + +needed for connection: +- IP address or hostname +- dns + - automatic (usepeerdns) + - name servers (ip) +- authentication domain name +- authentication + - no (noauth) + - yes +- username +- password +- encryption + - refuse 40 bit encr (nomppe-40) + - refuse 128 bit encr (nomppe-128) + - require stateless encr (mppe-stateful) + - require mppe (require-mppe) + - requires ppp-compress-18 (ppp_mppe) + - refuse eap (refuse-eap) + +optional: +- debug (debug dump) +- reconnect on disconnect (persist) + + +options: + + mppe-stateful + Allow MPPE to use stateful mode. Stateless mode is still + attempted first. The default is to disallow stateful mode. + nomppe Disables MPPE (Microsoft Point to Point Encryption). This is + the default. + + nomppe-40 + Disable 40-bit encryption with MPPE. + + nomppe-128 + Disable 128-bit encryption with MPPE. + + nomppe-stateful + Disable MPPE stateful mode. This is the default. + + refuse-mschap + With this option, pppd will not agree to authenticate itself to + the peer using MS-CHAP. + + refuse-mschap-v2 + With this option, pppd will not agree to authenticate itself to + the peer using MS-CHAPv2. + require-mppe + Require the use of MPPE (Microsoft Point to Point Encryption). + This option disables all other compression types. This option + enables both 40-bit and 128-bit encryption. In order for MPPE + to successfully come up, you must have authenticated with either + MS-CHAP or MS-CHAPv2. This option is presently only supported + under Linux, and only if your kernel has been configured to + include MPPE support. + + require-mppe-40 + Require the use of MPPE, with 40-bit encryption. + + require-mppe-128 + Require the use of MPPE, with 128-bit encryption. + + require-mschap + Require the peer to authenticate itself using MS-CHAP [Microsoft + Challenge Handshake Authentication Protocol] authentication. + + require-mschap-v2 + Require the peer to authenticate itself using MS-CHAPv2 + [Microsoft Challenge Handshake Authentication Protocol, Version + 2] authentication. + + require-eap + Require the peer to authenticate itself using EAP [Extensible + Authentication Protocol] authentication. + + |