home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / kalidos.zip / ODIPKT.ZIP / ODIPKT.DOC < prev    next >
Text File  |  1996-03-05  |  3KB  |  116 lines

  1. Using Kali with ODIPKT
  2. This documentation is Copyright 1996, Kali, Inc.
  3. Written by Jay Cotton (jay@kali.net)
  4. Latest revisions 3/4/96
  5.  
  6.             ******************
  7.             * Ethernet users *
  8.             ******************
  9.  
  10. Please see below for use with the Klos PPP driver.  Also, please note that
  11. you can't just go out and buy an ethernet adapter in order to get a faster
  12. connection.  You must be located in the same building as an internet router
  13. or gateway in order to use an ethernet connection.  If you are at home, and
  14. your connection to the internet is via modem, then you must use the modem
  15. and the PPP driver.
  16.  
  17. 1. Find an ODI driver for your ethernet card.  This will be found on the
  18.    setup disk that came with the ethernet card.  If you can't find it, then
  19.    there's no need to read anything else... :)
  20.  
  21. 2. Put your ODI driver in a directory along with startnet.bat, lsl.com, 
  22.    odipkt.com, and net.cfg (a sample net.cfg should have been included).
  23.   
  24. 3. Edit net.cfg for the correct settings.  These settings may be different
  25.    depending on your particular ethernet card.  Read the ODI instructions 
  26.    and sample net.cfg file that came with your ethernet card for more info.
  27.  
  28.    Sample net.cfg for a 3c509 driver:
  29.  
  30.     Link Support
  31.         Buffers         4 1500
  32.         MemPool         4096
  33.  
  34.     link driver 3C509
  35.         Int             5
  36.         Port            300
  37.         Mem             c8000
  38.          Frame           Ethernet_II
  39.     
  40.    Note: replace "3C509" with the name of your own ODI driver (do not add 
  41.    the .exe suffix).
  42.  
  43. 4. Edit startnet.bat to run your own ODI driver.  For example:
  44.  
  45.     @echo off
  46.     lsl
  47.     3c509
  48.     odipkt 0 96
  49.  
  50. 5. Run startnet.bat by typing "startnet" at the DOS prompt.  You should
  51. get messages like this:
  52.  
  53.     NetWare Link Support Layer v2.05 (930910)
  54.     (C) Copyright 1990-1993 Novell, Inc.  All Rights Reserved.
  55.  
  56.     BUFFERS 4 1500
  57.     MEMPOOL 4096
  58.     Configuration File "C:\KALI\ODI\NET.CFG" used.
  59.  
  60.     Max Boards 4, Max Stacks 4
  61.     Buffers 4, Buffer size 1500 bytes, Memory pool 4096 bytes.
  62.  
  63.  
  64.     3Com 3C509 EtherLink III MLID w/ DME  v1.00 (920706)
  65.     (C) Copyright 1992 3Com Corp.  All Rights Reserved
  66.  
  67.     Int 10, Port 300, Mem EC000, Node Address 608C65B294
  68.     Max Frame 1514 bytes, Line Speed 10 Mbps
  69.     Board 1, Frame ETHERNET_II
  70.  
  71.     ODIPKT 2.1
  72.     (c) Copyright Daniel Lanciani 1991-1993.  All rights reserved.
  73.     This software is provided with NO WARRANTY.
  74.     Using Ethernet framing, class 1
  75.     ODIPKT is installed and ready.
  76.  
  77. 6. Run Kali like normal.
  78.  
  79. 7. Unload odipkt by typing "termin 0x60".  Make sure Kali is unloaded
  80.    before doing this since termin doesn't check.
  81.  
  82.  
  83.             ***********************
  84.             * Klos PPPSHARE users *
  85.             ***********************
  86.  
  87. 1. Edit net.cfg to set the frame type to Ethernet_II like this:
  88.  
  89.     Frame    Ethernet_II
  90.  
  91.    You can also do this from inside pppmenu, but you'll need to exit 
  92.    and unload and reload before this will take effect.
  93.  
  94. 2. Edit your load.bat file to replace the IPSTUB driver with ODIPKT.
  95.    Your new load.bat might look like this:
  96.  
  97.     @echo off
  98.     lsl
  99.     ppp
  100.     pppmenu
  101.     pppstate wait ip
  102.     pppwat
  103.     odipkt 0 96
  104.  
  105. 3. Run the load.bat file in the usual way.  You should now be able to 
  106.    run ping while Kali is loaded and have a little more memory available.
  107.  
  108. 4. To unload odipkt you must enter "termin 0x60".  You can modify your
  109.    unload.bat file like this:
  110.  
  111.     @echo off
  112.     kali /u
  113.     termin 0x60
  114.     ppp u
  115.     lsl u
  116.