Advertisement
Guest User

Untitled

a guest
Apr 29th, 2015
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. # BSD licensed ppp-2.4.2 upstream with MPPE only, kernel module ppp_mppe.o
  2. # {{{
  3. refuse-pap
  4. refuse-chap
  5. refuse-mschap
  6. # Require the peer to authenticate itself using MS-CHAPv2 [Microsoft
  7. # Challenge Handshake Authentication Protocol, Version 2] authentication.
  8. require-mschap-v2
  9. # Require MPPE 128-bit encryption
  10. # (note that MPPE requires the use of MSCHAP-V2 during authentication)
  11. require-mppe-128
  12. # }}}
  13.  
  14.  
  15. # OpenSSL licensed ppp-2.4.1 fork with MPPE only, kernel module mppe.o
  16. # {{{
  17. #-chap
  18. #-chapms
  19. # Require the peer to authenticate itself using MS-CHAPv2 [Microsoft
  20. # Challenge Handshake Authentication Protocol, Version 2] authentication.
  21. #+chapms-v2
  22. # Require MPPE encryption
  23. # (note that MPPE requires the use of MSCHAP-V2 during authentication)
  24. #mppe-40 # enable either 40-bit or 128-bit, not both
  25. #mppe-128
  26. #mppe-stateless
  27. # }}}
  28.  
  29.  
  30. # Network and Routing
  31.  
  32. # If pppd is acting as a server for Microsoft Windows clients, this
  33. # option allows pppd to supply one or two DNS (Domain Name Server)
  34. # addresses to the clients. The first instance of this option
  35. # specifies the primary DNS address; the second instance (if given)
  36. # specifies the secondary DNS address.
  37. ms-dns 8.8.8.8
  38. ms-dns 8.8.4.4
  39.  
  40. # If pppd is acting as a server for Microsoft Windows or "Samba"
  41. # clients, this option allows pppd to supply one or two WINS (Windows
  42. # Internet Name Services) server addresses to the clients. The first
  43. # instance of this option specifies the primary WINS address; the
  44. # second instance (if given) specifies the secondary WINS address.
  45. #ms-wins 10.0.0.3
  46. #ms-wins 10.0.0.4
  47.  
  48. # Add an entry to this system's ARP [Address Resolution Protocol]
  49. # table with the IP address of the peer and the Ethernet address of this
  50. # system. This will have the effect of making the peer appear to other
  51. # systems to be on the local ethernet.
  52. # (you do not need this if your PPTP server is responsible for routing
  53. # packets to the clients -- James Cameron)
  54. proxyarp
  55.  
  56. # Normally pptpd passes the IP address to pppd, but if pptpd has been
  57. # given the delegate option in pptpd.conf or the --delegate command line
  58. # option, then pppd will use chap-secrets or radius to allocate the
  59. # client IP address. The default local IP address used at the server
  60. # end is often the same as the address of the server. To override this,
  61. # specify the local IP address here.
  62. # (you must not use this unless you have used the delegate option)
  63. #10.8.0.100
  64.  
  65.  
  66. # Logging
  67.  
  68. # Enable connection debugging facilities.
  69. # (see your syslog configuration for where pppd sends to)
  70. #debug
  71.  
  72. # Print out all the option values which have been set.
  73. # (often requested by mailing list to verify options)
  74. #dump
  75.  
  76.  
  77. # Miscellaneous
  78.  
  79. # Create a UUCP-style lock file for the pseudo-tty to ensure exclusive
  80. # access.
  81. lock
  82.  
  83. # Disable BSD-Compress compression
  84. nobsdcomp
  85.  
  86. # Disable Van Jacobson compression
  87. # (needed on some networks with Windows 9x/ME/XP clients, see posting to
  88. # poptop-server on 14th April 2005 by Pawel Pokrywka and followups,
  89. # http://marc.theaimsgroup.com/?t=111343175400006&r=1&w=2 )
  90. novj
  91. novjccomp
  92.  
  93. # turn off logging to stderr, since this may be redirected to pptpd,
  94. # which may trigger a loopback
  95. nologfd
  96.  
  97. # put plugins here
  98. # (putting them higher up may cause them to sent messages to the pty)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement