home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / slip2xv1.zip / slip.cfg < prev    next >
Text File  |  1993-07-06  |  4KB  |  117 lines

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