home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / inter / internet / !Internet / !Configure < prev    next >
Text File  |  1995-10-13  |  22KB  |  361 lines

  1. |================================================================|
  2. | Configuration file for !Internet V4.07 (13th October 1995)     |
  3. |                                                                |
  4. | Copyright (C) Acorn Computers Ltd., 1995                       |
  5. |================================================================|
  6.  
  7. |================================================================|
  8. | Inet$HostName must be set to the principal host name of this   |
  9. | RISC OS machine.                                               |
  10. |================================================================|
  11.  
  12. Set Inet$HostName thishost
  13.  
  14.  
  15. |================================================================|
  16. | Inet$EcoIPAddr sets whether you have an Econet interface that  |
  17. | you wish to configure for TCP/IP, and (if so) sets its         |
  18. | Internet address. It may be used in these different ways:      |
  19. |                                                                |
  20. | Econet interface not used for TCP/IP                           |
  21. | ------------------------------------                           |
  22. | If an Econet interface is not present, or is not to be         |
  23. | configured to support Internet protocols (default), then:      |
  24. |                                                                |
  25. | Set Inet$EcoIPAddr ""                                          |
  26. |                                                                |
  27. | Internet address set up explicitly                             |
  28. | ----------------------------------                             |
  29. | You may explicitly set the Internet address of your Econet     |
  30. | interface. For example:                                        |
  31. |                                                                |
  32. | Set Inet$EcoIPAddr 1.0.0.1                                     |
  33. |                                                                |
  34. | Internet address set from interface name                       |
  35. | ----------------------------------------                       |
  36. | You may specify the interface name of your Econet interface.   |
  37. | In this case, its Internet address is found by looking up the  |
  38. | specified interface name in the hosts database. (The location  |
  39. | of the hosts database is set below by the variable             |
  40. | InetDBase$Path.) For example:                                  |
  41. |                                                                |
  42. | Set Inet$EcoIPAddr thishost_eco                                |
  43. |                                                                |
  44. | If all your Econet interface names are derived from the        |
  45. | principal host name in the same way, you can avoid having to   |
  46. | edit the value of Inet$EcoIPAddr for each station. For         |
  47. | example:                                                       |
  48. |                                                                |
  49. | Set Inet$EcoIPAddr <Inet$HostName>_eco                         |
  50. |                                                                |
  51. | Internet address set from principal host name                  |
  52. | ---------------------------------------------                  |
  53. | You may have a number of stations that use only Econet to      |
  54. | connect to TCP/IP, and that hence use their principal host     |
  55. | name as their Econet interface name. Their Internet address    |
  56. | can be found by looking up their principal host name in the    |
  57. | hosts database, thus:                                          |
  58. |                                                                |
  59. | Set Inet$EcoIPAddr <Inet$HostName>                             |
  60. |                                                                |
  61. | Using this method avoids having to edit the value of           |
  62. | Inet$EcoIPAddr for each station.                               |
  63. |                                                                |
  64. | Internet address set from an ARP server                        |
  65. | ---------------------------------------                        |
  66. | You may look up the Internet address of the Econet interface   |
  67. | via a Reverse ARP exchange with a remote ARP server. The ARP   |
  68. | server is passed the Econet interface's physical address of    |
  69. | 00:00:00:00:<net_number>:<station_number>, and returns its     |
  70. | Internet address. If this is required, then:                   |
  71. |                                                                |
  72. | Set Inet$EcoIPAddr revarp                                      |
  73. |                                                                |
  74. | Internet address set from a BOOTP server                       |
  75. | ----------------------------------------                       |
  76. | You may also look up the Internet address of the Econet        |
  77. | interface via an exchange with a remote BOOTP server. The      |
  78. | server is passed the Econet interface's physical address of    |
  79. | 00:00:00:00:<net_number>:<station_number>, and returns its     |
  80. | Internet address. If this is required, then:                   |
  81. |                                                                |
  82. | Set Inet$EcoIPAddr bootp                                       |
  83. |================================================================|
  84.  
  85. Set Inet$EcoIPAddr ""
  86.  
  87.  
  88. |================================================================|
  89. | Inet$EcoIPMask sets the Econet interface's netmask, which      |
  90. | specifies how much of an Econet Internet address is to be      |
  91. | interpreted as the network part, and how much as the host      |
  92. | part.                                                          |
  93. |                                                                |
  94. | The default value:                                             |
  95. |                                                                |
  96. | Set Inet$EcoIPMask default                                     |
  97. |                                                                |
  98. | is suitable for any network with no subnets.  If you are using |
  99. | subnets then you must set this value as appropriate. For       |
  100. | example:                                                       |
  101. |                                                                |
  102. | set Inet$EcoIPMask 0xfffff800                                  |
  103. |                                                                |
  104. | If an Econet interface is not present, is not configured to    |
  105. | support Internet protocols, is using Reverse ARP, or is using  |
  106. | BOOTP, then the value of this variable is ignored.             |
  107. |================================================================|
  108.  
  109. Set Inet$EcoIPMask default
  110.  
  111.  
  112. |================================================================|
  113. | Inet$EtherIPAddr sets whether you have an Ethernet interface   |
  114. | that you wish to configure for TCP/IP, and (if so) sets its    |
  115. | Internet address. It may be used in these different ways:      |
  116. |                                                                |
  117. | Ethernet interface not used for TCP/IP                         |
  118. | --------------------------------------                         |
  119. | If an Ethernet interface is not present, or is not to be       |
  120. | configured to support Internet protocols, then:                |
  121. |                                                                |
  122. | Set Inet$EtherIPAddr ""                                        |
  123. |                                                                |
  124. | Internet address set up explicitly                             |
  125. | ----------------------------------                             |
  126. | You may explicitly set the Internet address of your Ethernet   |
  127. | interface. For example:                                        |
  128. |                                                                |
  129. | Set Inet$EtherIPAddr 1.0.0.1                                   |
  130. |                                                                |
  131. | Internet address set from interface name                       |
  132. | ----------------------------------------                       |
  133. | You may specify the interface name of your Ethernet interface. |
  134. | In this case, its Internet address is found by looking up the  |