home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3 / hamradioversion3.0examsandprograms1992.iso / bbs / bpq402a / nosbpq.doc < prev    next >
Text File  |  1990-09-20  |  2KB  |  95 lines

  1.                       NOS/BPQ Link - NODEDRV.COM
  2.  
  3.  
  4. I have now produces a 'Packet Driver' to allow NOS to communicate with
  5. the switch. It uses the KISS mode application interface (See KISSMODE.DOC
  6. for details). One copy of the packet driver is needed for each radio
  7. port to be used by NOS, plus one for the loopback port if you want NOS
  8. to be able to talk to the switch. Experience with the system is rather
  9. limited, but I suggest that if you are using TCP/IP over NETROM that
  10. you use the lookback port, and let the switch handle all the radio links. 
  11. Only if you are using IP in datagram or ax.25 virtual circuit mode will 
  12. you need to give NOS direct access to the radio ports.
  13.  
  14. Please note that you need at least version 3.57 of BPQCODE.EXE
  15.  
  16. The following is an extract from my system. You will need to tailor
  17. it to your own requirements.
  18.  
  19.  
  20. NODEDRV must be loaded in the same window as NOS - if you put it
  21. under desqview the system will probably crash. It takes two parameters,
  22. the software interrupt number used by NOS to communicate with it (in
  23. the range 60-7f hex), and the virtual COM port used to talk to the
  24. switch. 
  25.  
  26.  
  27. STARTNOS.BAT
  28.  
  29.  
  30. nodedrv 0x61 10    
  31. nodedrv 0x62 11
  32. nodedrv 0x63 12
  33. nos
  34.  
  35.  
  36.  
  37. This is the relevent TNCPORT bit of BPQCFG.TXT. I have two radio ports
  38. (Port 1 on 2m, and port 2 on 70 cms). Port 3 is the loopback port.
  39.  
  40.  
  41. TNCPORT
  42.     COM=10
  43.     TYPE=KISS
  44.     KISSMASK=4        ; PORT 3 (100B) - Loopback port
  45. ENDPORT
  46.  
  47. TNCPORT
  48.     COM=11
  49.     TYPE=KISS
  50.     KISSMASK=2        ; PORT 2 (10B) - 70cms
  51. ENDPORT
  52.  
  53. TNCPORT
  54.     COM=12
  55.     TYPE=KISS
  56.     KISSMASK=1        ; PORT 1 (1B) - 2m
  57. ENDPORT
  58.  
  59.  
  60. This is the 'attach' bit of AUTOEXEC.NET. I can't see where the parameter
  61. following the interface name is used, but the code suggests it is the
  62. maximum length of the transmit queue. The next param is the MTU.
  63.  
  64.  
  65. #
  66. attach packet 61 node 5 236
  67. attach packet 62 ax2 5 256
  68. attach packet 63 ax1 5 256
  69. #
  70. #    MYCALL doesnt seem to be applied to packet driver interfaces, so
  71. #        set up a callsign (or it sends garbage)
  72. #
  73. if node link g8bpq-5
  74. if ax1 link g8bpq-5
  75. if ax2 link g8bpq-5
  76. #
  77.  
  78.  
  79.  
  80. This is a new facility, and there is very little local IP activity for
  81. me to try it with. Any feedback would be most welcome, both on problems
  82. and suggestions on how best to set up the system.
  83.  
  84.  
  85. 73,
  86.  
  87. John Wiseman, G8BPQ
  88. 76, Haywood Road,
  89. Mapperley,
  90. Nottingham.
  91. NG3 6AE
  92.  
  93. 6th June, 1990
  94.  
  95.