pptpd-options 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. ###############################################################################
  2. # $Id: pptpd-options,v 1.1 2004/05/17 02:16:35 quozl Exp $
  3. #
  4. # Sample Poptop PPP options file /etc/ppp/pptpd-options
  5. # Options used by PPP when a connection arrives from a client.
  6. # This file is pointed to by /etc/pptpd.conf option keyword.
  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 and the kernel MPPE module.
  11. ###############################################################################
  12. # Authentication
  13. # Name of the local system for authentication purposes
  14. # (must match the second field in /etc/ppp/chap-secrets entries)
  15. name pptpd
  16. # Optional: domain name to use for authentication
  17. # domain mydomain.net
  18. # Strip the domain prefix from the username before authentication.
  19. # (applies if you use pppd with chapms-strip-domain patch)
  20. #chapms-strip-domain
  21. # Encryption
  22. # Debian: on systems with a kernel built with the package
  23. # kernel-patch-mppe >= 2.4.2 and using ppp >= 2.4.2, ...
  24. # {{{
  25. refuse-pap
  26. refuse-chap
  27. refuse-mschap
  28. # Require the peer to authenticate itself using MS-CHAPv2 [Microsoft
  29. # Challenge Handshake Authentication Protocol, Version 2] authentication.
  30. require-mschap-v2
  31. # Require MPPE 128-bit encryption
  32. # (note that MPPE requires the use of MSCHAP-V2 during authentication)
  33. require-mppe-128
  34. # }}}
  35. # Network and Routing
  36. # If pppd is acting as a server for Microsoft Windows clients, this
  37. # option allows pppd to supply one or two DNS (Domain Name Server)
  38. # addresses to the clients. The first instance of this option
  39. # specifies the primary DNS address; the second instance (if given)
  40. # specifies the secondary DNS address.
  41. #ms-dns 10.0.0.1
  42. #ms-dns 10.0.0.2
  43. # If pppd is acting as a server for Microsoft Windows or "Samba"
  44. # clients, this option allows pppd to supply one or two WINS (Windows
  45. # Internet Name Services) server addresses to the clients. The first
  46. # instance of this option specifies the primary WINS address; the
  47. # second instance (if given) specifies the secondary WINS address.
  48. #ms-wins 10.0.0.3
  49. #ms-wins 10.0.0.4
  50. # Add an entry to this system's ARP [Address Resolution Protocol]
  51. # table with the IP address of the peer and the Ethernet address of this
  52. # system. This will have the effect of making the peer appear to other
  53. # systems to be on the local ethernet.
  54. # (you do not need this if your PPTP server is responsible for routing
  55. # packets to the clients -- James Cameron)
  56. proxyarp
  57. # Debian: do not replace the default route
  58. nodefaultroute
  59. # Logging
  60. # Enable connection debugging facilities.
  61. # (see your syslog configuration for where pppd sends to)
  62. #debug
  63. # Print out all the option values which have been set.
  64. # (often requested by mailing list to verify options)
  65. #dump
  66. # Miscellaneous
  67. # Create a UUCP-style lock file for the pseudo-tty to ensure exclusive
  68. # access.
  69. lock
  70. # Disable BSD-Compress compression
  71. nobsdcomp