home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.0 (User) / OS_user_4.0.iso / private / etc / ppp / Examples / options < prev    next >
Encoding:
Text File  |  1995-07-03  |  3.3 KB  |  124 lines

  1. #
  2. # This is an example options file.  The options file
  3. # should be placed in /etc/ppp/options.  These options
  4. # are global to all ppp connections.  See the "OPTIONS FILES" section
  5. # in the pppd man page for more details.
  6. #
  7. # Options specified here don't need to be respecified
  8. # on the pppd command line.  Note: Most of the example
  9. # scripts in this directory assume an empty options file.
  10. # However, it doesn't hurt to respecify them.
  11. #
  12.  
  13. #
  14. # The size of the Maximum Transfer Unit.  Higher values
  15. # give better performance for file transfers.  Lower values
  16. # give better performance for interactive performance.
  17. #
  18. mtu 296
  19.  
  20. #
  21. # If you want to periodically touch the other end to make 
  22. # sure it is still alive, set these options.
  23. #
  24. lcp-echo-interval 15    # interval in seconds between touches
  25. lcp-echo-failure  3     # number of failed attempts before link shutdown
  26.  
  27. #
  28. # If you want to enable debugging of the pppd process, leave
  29. # this uncommented.  Output will be sent to the file
  30. # /usr/adm/ppp2.2.debug (or whatever you set it to in
  31. # /etc/syslog.conf.
  32. #
  33. debug
  34.  
  35. #
  36. # If you want kernel debugging (i.e. debug output from the
  37. # NeXT LKS), enable this:
  38. #
  39. # kdebug 1  is SC_DEBUG
  40. #        2  is SC_LOG_INPKT
  41. #        4  is SC_LOG_OUTPKT
  42. #        8  is SC_LOG_RAWIN
  43. #        16 is SC_LOG_FLUSH
  44. # add together to get debugging you want.
  45. #
  46. kdebug 17
  47.  
  48. #
  49. # If you want pppd to set the PPP connection as the default
  50. # route when the link is brought up, enable this option.
  51. # Standalone systems dialing into a provider probably want this
  52. # option.
  53. #
  54. defaultroute
  55.  
  56. #
  57. # These two options disable some of the
  58. # various types of authentication.
  59. #
  60. # Note: Some systems require authenticaion before
  61. #       negotiation can complete.  If you disable
  62. #       authentication on these systems, they will
  63. #       not complain, but they will also not allow
  64. #       negotiaion to complete and your link will
  65. #       not come up.
  66. #
  67. # If you enable either or both of these, you must
  68. # read the pppd man page to create the proper 
  69. # secrets files.
  70. #
  71. -pap
  72. -chap
  73.  
  74. #
  75. # This specifies that should use a UUCP-style lock on the
  76. # serial device to ensure exclusive access to the device.
  77. #
  78. lock
  79.  
  80. #
  81. # Use hardware flow control (i.e. RTS/CTS) to control the
  82. #  flow of data on the serial port.
  83. #
  84. # On NeXT, you also must use the proper device.
  85. #  /dev/cufa 
  86. #    -or-
  87. #  /dev/cufb
  88. #
  89. crtscts
  90.  
  91.  
  92. #
  93. # bsdcomp nr,nt
  94. #
  95. # Request that the peer compress packets that it sends,
  96. # using the BSD-Compress scheme, with a maximum code size
  97. # of nr bits, and agree to compress packets sent to the
  98. # peer with a maximum code size of nt bits.  If nt is not
  99. # specified, it defaults to the value given for nr.
  100. # Values in the range 9 to 15 may be used for nr and nt;
  101. # larger values give better compression but consume more
  102. # kernel memory for compression dictionaries.  Alterna-
  103. # tively, a value of 0 for nr or nt disables compression
  104. # in the corresponding direction.
  105. #
  106. # It is OK if the peer doesn't support BSD compression.  In that
  107. # case, the peer will NAK this option and things will continue
  108. # normally.
  109. #
  110. bsdcomp 10,10    
  111.  
  112. #
  113. # Add an entry to this system's ARP [Address Resolution
  114. # Protocol] table with the IP address of the peer and the
  115. # Ethernet address of this system.
  116. #
  117. # This is only necessary if your are allowing others to dial
  118. # into you (i.e. you are the server).
  119. #proxyarp
  120.  
  121.  
  122.  
  123.