home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / v612docs.zip / VC9C < prev    next >
Text File  |  1993-12-16  |  6KB  |  138 lines

  1. .TOPIC:                                   
  2. LocalNET
  3.  
  4.                                    VBBS 6.12 Documentation -- 9-C-1
  5.  
  6.            ╔══════════════════════════════════════════╗
  7.            ║ CHAPTER 9 ANNEX C     LOCAL NETWORKS     ║
  8.            ╚══════════════════════════════════════════╝
  9.  
  10.            Local Network General Information
  11.            ═════════════════════════════════
  12.            These are the basics of LocalNET:
  13.            1.  You may have up to 99 nodes in your LocalNET.
  14.            2.  You may run Vnet Type or non-Vnet types of LocalNETs.
  15.            3.  Use special care in creating your network files to
  16.                insure success.  See Creating and Editing Files.
  17.                Failure to use the exact setup for your files,
  18.                including spaces will result in LocalNET problems.
  19.            4.  If you find you have problems with your LocalNET
  20.                re-read this DOC or See VDOC3.EXE <Trouble Shooting>
  21.            5.  It's important that you create and keep an updated
  22.                Subslist.  See Creating and Editing Files
  23.            6.  You can use Neil Marshal's VAREA with LocalNET Subs.
  24.            7.  Remember, your LocalNET is only as good as the WORK
  25.                and effort you put into it.
  26.  
  27.            LocalNET Network Updates
  28.            ════════════════════════
  29.            VSEND (another Neil Marshal Program) will handle updates for
  30.            your localNET.  VSEND may ONLY be downloaded and used as
  31.            designated by VBBS and VirtualNET management.  Please contact
  32.            your RC or GC if you feel you may qualify for VSEND.
  33.         
  34.            Creating and Editing Files
  35.            ═══════════════════════════
  36.            It is CRITICAL that your files be setup with the proper
  37.            format.  Cut and paste from VirtualNET's files to assure
  38.            proper layout and format.
  39.  
  40.            1.  BBSlist.1 contains the Nodes in your LocalNET.  Node #,
  41.                phone #, BBS name, baud rate and the node number of the
  42.                server in LocalNET they connect with.
  43.            2.  BBSlist.0 Contains the Network Cordinator's Information.
  44.                You use NC to distinguish the Network Cordinator.
  45.            3.  You must also show the subslist cordinator in order to
  46.                use VAREA.  They are show with SC in the same location
  47.                as NC is for the network cordinator.
  48.            4.  Subslist.net lists your subs for LocalNET.  You must
  49.                use the VAREA format and have a section as UNKNOWN
  50.                HOSTS.  Failure to have a listing for UNKNOWN HOSTS,
  51.                EVEN though you do not have any unknown hosts will
  52.                result in a VAREA error.
  53.            5.  The Networks.lst file in your c:\vbbs\data directory
  54.                is where you add the NAME of your LocalNET.  You do
  55.                this by replacing the word LOCALNET with YOURNET where
  56.                YOURNET = the name of your network.
  57.            6.  One should note that ONLY networkid=15 will work with-
  58.                out registering VBBS.  If you register VBBS, you may
  59.                use networkid=19 and networkid's=90 through
  60.                networkid=99.
  61.            7.  File transfer sub options in VBBS also work in LocalNET
  62.                networks.
  63.  
  64.                                    VBBS 6.12 Documentation --9-C-2
  65.  
  66.            It's important to note that EACH LocalNET must have it's
  67.            own network directory.  This directory is a sub directory of
  68.            VBBS.  Example: C:\VBBS\LocalNET
  69.  
  70.            Network types are changed in the Networks.lst file which is
  71.            located in your VBBS\DATA directory.  Change the Number 1 to
  72.            the corresponding network type.
  73.  
  74.            Type 1  Vnet
  75.            Type 2  WWIVnet
  76.            Type 3  WWIVlink
  77.            Type 4  FIDOnet
  78.            Type 5  USEnet
  79.            Type 6  ICEnet
  80.  
  81.            Using the proper network type with the format and layout and
  82.            required additional files of that type network will result
  83.            in your LocalNET working properly.  If you have difficulties
  84.            setting up your LocalNET then:
  85.  
  86.  
  87.            Example UpdateNET
  88.           ══════════════════
  89.            The following is an example of a batch file each node can
  90.            run as a daily event.  If an updated file arrives during
  91.            a network connecton the LocalNET will be updated during the
  92.            daily event.
  93.                                                       
  94.            Naming the batch file:
  95.            Due to the many LocalNET slots, we recommend the
  96.            following update batch file naming system --
  97.            updateXX.bat where XX = the networkid of the
  98.            LocalNET.  Example: Update15.bat
  99.  
  100.            Also, to avoid bbslist.1's and other updated
  101.            files from LocalNET's overwriting each other
  102.            we recommend the following naming system for
  103.            each of these --
  104.            BBSLIST0.XX
  105.            BBSLIST1.XX
  106.            SUBSLIST1.XX
  107.            Again where XX = the networkid of the LocalNET
  108.  
  109.                                    VBBS 6.12 Documentation--9-C-3
  110.  
  111.            -------------- Update15.bat -----------------
  112.            cd\vbbs
  113.            copy c:\vbbs\sysop\bbslist0.15 c:\vbbs\local15
  114.            copy c:\vbbs\sysop\bbslist1.15 c:\vbbs\local15
  115.            copy c:\vbbs\sysop\subslist1.15 c:\vbbs\local15
  116.            cd\vbbs\local15
  117.            del bbslist1.old
  118.            del bbslist0.old
  119.            del subslist1.old
  120.            ren bbslist.1 bbslist1.old
  121.            ren bbslist.0 bbslist0.old
  122.            ren subslist.net subslist1.old
  123.            ren bbslist0.15 bbslist.0
  124.            ren bbslist1.15 bbslist.1
  125.            ren subslist1.15 subslist.net
  126.            cd\vbbs
  127.            vnet /a networkid=15
  128.            varea networkid=15 /auto /verify /delete
  129.            --------------------- end of file -----------------
  130.  
  131.            The Net Coordinator needs to make sure that every
  132.            update includes all three files.  The Clients need
  133.            to be sure they do not delete these files in their
  134.            sysop directory after an update, because if a new
  135.            update does not arrive the files needed will be
  136.            missing.
  137.  
  138.