home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / NETWORK / DRIVERSS.ZIP / NB.NOT / text0000.txt < prev   
Encoding:
Text File  |  1990-03-13  |  3.4 KB  |  107 lines

  1. >
  2. > Michael Haberler states:
  3. >
  4. > > Do you mean the old IBM PC Lan which they bought from Sytek? Which runs a
  5. > > variety of MS-Net on top of it? If so, we have drivers for
  6. > > KA9Q (old, working), NOS (untested), a Netbios packet driver which works
  7. > > with NCSA Telnet (fine). We are investigating a Netbios driver under PC-NFS,
  8. > > but it's still buggy.
  9. >
  10. > Michael,
  11. >
  12. >     I can't seem to reach you directly for some reason; so I am replying
  13. > to the mailing list.  My apologies for taking up room on the list.
  14.     sorry. The .at domain still confuse mailers since it used to be an
  15.     alias for @ ..
  16. >
  17. >     I read your message concerning the drivers you had with great
  18. > interest.  Would it be possible for me to get those drivers from
  19. > you?...
  20.  
  21. Well,
  22.  
  23. here they come. I'm not sure what you're trying to connect. We're using
  24. the packet driver with NCSA Telnet, and KA9Q (a pre-NOS release).
  25. The PD is a real hack; I wonder if it will work for you. Anyway..
  26.  
  27. We have PC's on a Sytek LAN, and a PC running KA9Q as a bridge into ethernet.
  28. The clients use the packet driver and NCSA Telnet or ka9q wover the pd.
  29. The bridge has its own pd (which I include 'for reference'), and
  30. the standard builtin 3c501 ethernet driver.
  31.  
  32. The point is that the pd's have to be set up such that all traffic goes
  33. to the bridge; the upper layer doesnt pass a gateway IP adress, and arp
  34. doesnt work. The PD is class 6 ('SLIP'), i.e. no lan headers, no arp,
  35. MTU is 512 bytes (a NetBIOS limit,grrr).
  36.  
  37. Setup:
  38. ------
  39.  
  40. Assume your ka9q bridge has IP 192.13.1.128. Your Netbios client has
  41. IP address 192.13.1.131.
  42.  
  43. On the client, insert
  44.  
  45. 'nb 0x7f 192.13.1.131 192.13.1.128'
  46. into autoexecbat. This will load the pd, and set the 'gateway' ip address.
  47.  
  48. The KA9Q autoexec.net reads:
  49. ---------
  50.  
  51. # Attach interfaces
  52. # Syntax: attach <hw type> <I/O address> <vector> <mode> <label>
  53. #                <bufsize> <mtu> [<speed>]
  54. #
  55. #
  56. hostname bull
  57. ip ttl 16
  58. ip address [192.13.1.128]
  59. attach netbios arpa nb0 5 512
  60. attach 3c500 0x300 5 arpa ec0 10 1500
  61. #
  62. route add default ec0
  63. route add [192.13.1.128/28] nb0
  64. ....
  65. ------------
  66.  
  67. Alternatively, one could use a pd on ka9q as well.
  68.  
  69. Here's the relevant fragment of ncsa telnet config.tel:
  70.  
  71. ---------------------------
  72. myip=192.13.1.131        # ip types are
  73. hardware=packet
  74. address=6                       # base memory address or packet driver class
  75.                                 # if using packet driver (0 == default ==
  76.  ethernet)
  77.                                 # or class=6 for slip
  78. ioaddr=0                        # I/O address  or packet int vector if using
  79.  packet driver
  80.                                 # If = 0 and packet driver, telbin looks for
  81.  first
  82.                                 # packet driver found between 60H and 7FH
  83. .....
  84. maxseg=440                      # largest segment we can receive
  85. rwin=440                        # most bytes we can receive without ACK
  86. ------------------------------
  87.  
  88.  
  89. At last:
  90. Here it is. Use the Turbo Assembler and linker and create a com file (order of
  91. binaries is important):
  92.  
  93. tasm nbhead;
  94. tasm nb;
  95. tasm tail;
  96. tlink nbhead.obj+nb.obj+tail.obj;
  97. exe2bin nbhead.exe nb.com
  98.  
  99. -enjoy,
  100. michael
  101.  
  102. --------
  103. Michael Haberler    mah@nestroy.wu-wien.ac.at, mah@awiwuw11.bitnet
  104. University of Economics and Business Administration
  105. Augasse 2-6,  A-1090 Vienna, Austria
  106. Tel: +43 (222) 347-541 x796 (9-18 CET)     Fax 347-541 x770
  107.