home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 29 Fixes_o / 29-Fixes_o.zip / tcpcsd2.zip / BASECSD2.EXE / ETC / SLIP.CFG < prev   
Text File  |  1993-04-27  |  5KB  |  107 lines

  1. #------------------------------------------------------------------------------
  2. #
  3. #               OS/2 2.0 SLIP Driver for IBM TCP/IP version 2.0
  4. #
  5. #
  6. #                                  SLIP.CFG
  7. #
  8. #                          SLIP Configuration File
  9. #             ..................................................
  10. #
  11. #                             Copyright (c) 1993
  12. #               David Bolen and Advanced Network & Services, Inc.
  13. #                            All Rights Reserved
  14. #
  15. # This file controls the interfaces that the SLIP driver creates and manages.
  16. # It is used to set up interface values (such as MTU, RTT estimates, and
  17. # device information), as well as specifying other per-interface data, such
  18. # as what scripts should be run to make a SLIP attachment over an interface.
  19. #
  20. #
  21. # The general format of the file is a series of interface "clauses", of the
  22. # form:
  23. #
  24. #               interface ??? {         # Comments
  25. #                    parameter = value  [,] [ parameter = value [,] ... ]
  26. #               }
  27. #
  28. # Spaces, commas and newlines are ignored (except within quoted strings).
  29. # In general, the layout of the file is free-form, within the general bounds
  30. # of the interface blocks.
  31. #
  32. # Comments may begin at any point on the line, and are signified by a hash
  33. # (#) character - everything past the comment character is ignored.
  34. #
  35. # Parameter names and values are delimited by whitespace.  Special characters
  36. # (whitespace, ',', '{', '}', '#', '=') may be included in a value by
  37. # surrounding that value in double quotes ("), or by prefixing the special
  38. # character with a backslash (\).  Use \\ to get a backslash itself, and use
  39. # \" within a quoted string to get a double quote within the value.
  40. #
  41. # In the above, ??? specifies an interface to be defined.  Currently only
  42. # two values are allowed:
  43. #
  44. #       default         Default settings.  Specifies parameters that will
  45. #                       be assumed for any interfaces later in the file
  46. #                       where their interface clauses do not contain new
  47. #                       values for the parameters.
  48. #       sl0             Serial Interface 0.
  49. #
  50. # The "interface default" clause may be specified multiple times, and is
  51. # additive.  Where a parameter appears in more than one such clause, its
  52. # most recent value will be used for any later interface clauses.
  53. #
  54. # The following parameters and values are allowed for each interface:
  55. #
  56. #   Basic Parameters
  57. #       device          Interface serial device (ie: "com1")
  58. #       mtu             Maximum transmission unit (bytes)
  59. #       compression     Adjusts VJ compression.  Can be "ON" (always compress),
  60. #                         "OFF" (never), or "AUTO" (accept compression and
  61. #                         start compressing if compressed packets are received)
  62. #       attachcmd       Name of rexx command script to run to attach interface
  63. #       attachparms       Parameters to pass to command script
  64. #
  65. #   Queuing Parameters
  66. #       fastqueue       Enables priority queueing for interactive traffic.
  67. #       nofastqueue       Disables priority queueing
  68. #       queuesize       Normal and priority queue sizes (IP kernel<->SLIP) in
  69. #       fastqueuesize     packets.  These should be multiples of 4.
  70. #
  71. #   Protocol Parameters
  72. #       rtt             Initial TCP RTT estimates.  Like BSD-Reno's per-route
  73. #       rttvar            defaults, but per-interface.  The values assigned
  74. #       rttmin            to these parameters are in milliseconds
  75. #       sendpipe        Size of TCP send and receive windows (bytes)
  76. #       recvpipe
  77. #       ssthresh        "Slow start" congestion window threshold (bytes)
  78. #
  79. #
  80. # When this file is initially processed, the system default interface clause
  81. # is as follows:
  82. #
  83. #       interface default {
  84. #          mtu=296, compression=on,
  85. #          fastqueue, queuesize=12, fastqueuesize=24,
  86. #          recvpipe=4096
  87. #       }
  88. #
  89. # And the default device for the "sl0" interface is "com1"
  90. #
  91. #
  92. # It is not recommended that anything other than "Basic Parameter" values
  93. # be adjusted unless truly necessary.  In particular, adjusting queue sizes
  94. # and rtt* values without a complete understanding of the affect such
  95. # adjustments will have on protocol (such as TCP) behavior can seriously
  96. # affect both interactive response and throughput.
  97. #
  98. #
  99. # $Id: slip.cfg,v 1.2 1993/04/09 04:42:20 db3l Exp $
  100. #
  101. #------------------------------------------------------------------------------
  102.  
  103.  
  104. # Set up a simple default sl0 (default parameter values commented above)
  105. interface sl0 { }
  106.  
  107.