home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / BBS / VBBS550.ZIP / MULTINET.DOC < prev    next >
Text File  |  1992-06-03  |  5KB  |  149 lines

  1.  
  2.                              Virtual BBS/NET 5.50
  3.  
  4.                              Multi-NET Engine Doc
  5.  
  6.                       Copyright (C) Roland De Graaf 1992
  7.  
  8.  
  9.                               ==== OVERVIEW ====
  10.       
  11.       VBBS 5.50 is the first BBS program to incorporate a true multinet
  12.       engine within the BBS, capable of seamlessly integrating up to 999
  13.       networks. The multinet engine is composed of 3 main parts:
  14.         
  15.       1) The multinetwork master list (NET.0, in your DATA directory)
  16.  
  17.          This master list is the way for VBBS to identify what network
  18.          a post/email is to/from. New networks will be added to the official
  19.          NET.0 on a regular basis. New networks should send requests
  20.          to 1@1 VirtualNET for inclusion into NET.0.
  21.  
  22.          DO NOT edit NET.0 yourself!
  23.  
  24.          A few typical NET.0 entries look like this:
  25.          1 "VirtualNET" 1
  26.          2 "WWIVnet"    2
  27.          3 "WWIVLInk"   2
  28.          4 "FIDOnet"    4
  29.          5 "USEnet"     3
  30.          6 "ICEnet"     2
  31.          7 "GNN"        1
  32.          8 "TechNET"    1
  33.          ^  ^^^^^^^^^   ^
  34.          |      |       |------- Network Type ( 1=VirtualNET type
  35.          |      |--- Network Name               2=WWIVnet type
  36.          |--- Net ID #                          3=UUCP type
  37.                                                 4=FIDO type   )
  38.  
  39.       2) The multinet Mail Tosser (built into VBBS)
  40.          
  41.          This part handles this process of distributing email
  42.          and posts to the appropriate "pending" files for each
  43.          network you are connected to. This part also handles
  44.          the importation of incoming email and posts to the BBS,
  45.          and the gating of posts between networks.
  46.  
  47.          Mail tosser operation is completely automatic.
  48.          
  49.       3) The various network-specific interfaces
  50.  
  51.          VNET.EXE     for VirtualNET-type networks (type 1)
  52.          VWW4.EXE     for WWIVnet-type networks    (type 2)
  53.          VUUCP.EXE    for UUCP-type networks       (type 3)
  54.          VFIDO.EXE    for FIDO-type networks       (type 4)
  55.  
  56.          Note: VWW4, VUUCP, and VFIDO are made available to registered
  57.          VBBS sysops only.
  58.                            
  59.                            ==== CONFIGURATION ====
  60.  
  61.       1) VCONFIG
  62.  
  63.       Most multinet configuration is done with VCONFIG. You merely tell
  64.       VCONFIG which network you want to edit, and it does it. For more
  65.       info on settings in VCONFIG, see VBBS550.DOC, and the DOC files that
  66.       accompany each network interface utility. (ie..VWW4, VUUCP, VFIDO.)
  67.       
  68.       2) ANSWER.NET configuration (ANSWER.NET, text file, DATA directory)
  69.       
  70.       ANSWER.NET is a kind of script file that "tells" VBBS how to detect 
  71.       networks. VirtualNET type networks do NOT need to be configured
  72.       in ANSWER.NET. (Type 1 networks are automatic.)
  73.  
  74.       However, to detect types 2 through 4, you will need to "program"
  75.       ANSWER.NET.  ANSWER.NET knows three simple one-character commands:
  76.       
  77.       ">"     Transmits a string. 
  78.       Example:
  79.       >HELLO
  80.       Would transmit HELLO
  81.  
  82.       "!"     Waits up to 2 seconds for a byte to come in
  83.  
  84.       "?"     Compares received byte to ascii code values
  85.               and calls up the appropriate network driver
  86.       Examples:
  87.       ?78=2
  88.       If received byte was 78 ("N"), then answer network #2 (WWIVnet)
  89.       ?76=3
  90.       If recevied byte was 76 ("L"), then answer network #3 (WWIVLInk)
  91.       
  92.       Here is an example ANSWER.NET, for a VBBS that is on WWIVnet:
  93.       !
  94.       ?78=2
  95.       ?32=2
  96.  
  97.       Here is an example for both WWIVnet and WWIVLink:
  98.       !
  99.       ?78=2
  100.       ?32=2
  101.       ?76=3
  102.       
  103.       Here is an example for a VBBS on USEnet:
  104.       >UUCP
  105.       !
  106.       ?85=5
  107.       
  108.       Here is an example for a VBBS on USEnet, WWIVnet, and WWIVLink:
  109.       >UUCP
  110.       !
  111.       ?78=2
  112.       ?32=2
  113.       ?76=3
  114.       ?85=5
  115.       
  116.                      ==== STARTING YOUR OWN NETWORK ====
  117.  
  118.       Becuase of VBBS uniquely-designed multinet engine, starting your own
  119.       new network is easier than ever before. Contact the VBBS author
  120.       for more information, and inclusion into the NET.0 master file.
  121.  
  122.       A few things to consider:
  123.       
  124.       1) You will need to decide on what type of network software 
  125.          you want to use for your new network:
  126.          
  127.          VirtualNET type
  128.          WWIVnet type
  129.          FIDO type
  130.          UUCP type
  131.  
  132.       2) You will need to select a name for your network.
  133.       
  134.       3) You will be responsible for maintaining your network;
  135.          its bbslists or nodelists, connections, etc.
  136.  
  137.       4) You should have the following thought out in advance:
  138.          Network Policy and Goals
  139.          Network Application
  140.          Advertising
  141.          Administration
  142.  
  143.       5) Update utilities -  Update utilities let you, as network coordinator
  144.       send out BBSLISTs and SUBSLISTs for the maintenance of your network.
  145.       Custom update utilities for VirtualNET type networks are available from 
  146.       the VBBS author. For more information on how to start a VirtualNET
  147.       type network, and obtaining update utilities, contact Roland De Graaf.
  148.       
  149.