home *** CD-ROM | disk | FTP | other *** search
/ The Hacker's Encyclopedia 1998 / hackers_encyclopedia.iso / hacking / network / ventel.hac < prev    next >
Encoding:
Text File  |  2003-06-11  |  6.2 KB  |  140 lines

  1. Dial is used to communicate with a dedicated Ven-Tel MD212 PLUS Modem.
  2. The MD212 PLUS is a dual speed modem providing 300 and 1200 baud, PLUS
  3. an integral telephone dialer.  Dial's primary utility is in dialing
  4. out to some other computer installation, with the advantage that text
  5. files may be sent or captured from the DEC-20 to the remote host.
  6.  
  7. To use dial, say DIAL to the exec:
  8.  
  9.         @DIAL
  10.         Dial Version 1.1 -- The VenTel AutoDialer Program
  11.         Aren't you glad you use Dial?  Don't you wish everyone did?
  12.         VenTel Baud rate: ? Terminal speed (300 or 1200)
  13.         VenTel Baud rate: 300
  14.  
  15.         The default Escape character is "^Z".
  16.         Hit one or two <CR>'s to establish connection to the VenTel.
  17.         Please DON'T access Telenet Via VEN-TEL!
  18.  
  19.  
  20. At this point, we type a couple of carriage returns (<CR>'s) to get
  21. the attention of the MD212 PLUS:
  22.  
  23.         VEN-TEL 212-PLUS 1.06
  24.         300 BAUD
  25.         $H                              ; Ask for Help
  26.         COMMANDS ARE:
  27.  
  28.         K      DIAL FROM KEYBOARD
  29.         S1-S5  STORE/CHANGE NUMBER      ; DON'T CHANGE 1-3!
  30.         1-5    DIAL STORED NUMBER
  31.         R      RE-DIAL LAST NUMBER
  32.         F      RE-DIAL FOREVER          ; Keep trying last number
  33.         D      DISPLAY STORED NUMBERS
  34.         C      CLEAR NUMBERS            ; DON'T DO THIS!!!
  35.         B      BUSY OUT                 ; Don't know what this does...
  36.         Q      QUIT
  37.         H      HELP
  38.  
  39.         $D                              ; Display stored numbers
  40.  
  41.         #1 9696000%                     ; BNR Inc's Gandalf KCS
  42.         #2 4970061%%                    ; Stanford SCORE (DEC-20)
  43.         #3 8578644%                     ; HP Labs Hulk (DEC-20)
  44.         #4
  45.         #5
  46.  
  47.         $QUIT                           ; exit the command loop
  48.  
  49. Ven-Tel MD212 commands are one two letters or digits, and fairly
  50. self-explanitory from the Help (H) description.  There is the ability
  51. to store commonly used numbers.  However, it is requested that the
  52. first three stored numbers be left as they are.  When storing numbers,
  53. or when dialing from the keyboard (K), two characters may to used to
  54. insert delays in the dialing sequence.  (This may be necessary to
  55. allow time for the remote phone to answer and establish carrier).  An
  56. percent sign (%) inserts a short delay, and a ampersand (&) inserts a
  57. long delay.  Usually, one or two short delays are required.
  58.  
  59. To abort an in-progress operation [like the Repeat Forever (R)
  60. command], type a character.
  61.  
  62. Once the requested number has been dialed, and a connection
  63. established, it is possible to get back the DEC-20 by typing the
  64. current Escape character.  The default Escape character is Ctrl-Z:
  65.  
  66.         ^Z                      ; The Dial Escape character is typed...
  67.         Dial>? Command for Dial one of the following:
  68.          CONTINUE   ESCAPE      EXIT        HELP        LOG
  69.          NOLOG      NOSEND      SEND
  70.  
  71. We are now talking to Dial escape mode.  The SEND command allows us to
  72. send a file (by simulating us typing it).  The LOG command can be used
  73. to capture a remote file, or just to keep a log of our session.  If
  74. you need to send the current escape character to the remote host, you
  75. can change it with the ESCAPE command.  After any of the Dial escape
  76. mode commands, you will want to either CONTINUE the remote dialog, or
  77. EXIT Dial.  The following is a brief summary of Dial escape mode
  78. commands:
  79.  
  80.         Dial>hELP
  81.  
  82.         The Dial escape mode allows the user to exit, log output or send
  83.         a file. The commands are:
  84.  
  85.         CONTINUE - Continues the Dial remote dialog
  86.         ESCAPE   - Sets a new Dial escape character
  87.         EXIT     - Returns to the monitor
  88.         HELP     - Prints this message
  89.         NOLOG    - Discontinues output logging
  90.         NOSEND   - Discontinues a file send
  91.         LOG      - Logs output to a file
  92.         SEND     - Sends the contents of a file
  93.  
  94.         Dial>exIT (to monitor)
  95.         Done.
  96.  
  97. If the autodialer is in use when you try to run Dial, you will be
  98. informed of this fact, along with the name of the person who is
  99. currently using Dial:
  100.  
  101.         @DIAL
  102.         Dial Version 1.1 -- The VenTel AutoDialer Program
  103.         Aren't you glad you use Dial?  Don't you wish everyone did?
  104.         Don't you wish MILLIGAN didn't?.  Please try again later.
  105.         Done.
  106.  
  107. Known limitations:
  108.  
  109.         The autodialer expects the thing you dial to break connection
  110.         (drop carrier) when you are done.  If you access TeleNet via
  111.         Dial (either by dialing the Gandalf, or directly) you will
  112.         leave the autodialer attached to TeleNet until it is reset
  113.         manually.  Moral: DON'T ACCESS TELENET VIA DIAL!!!
  114.  
  115.         Sometimes, the autodialer will be available, but will not
  116.         respond to the <CR>'s to allow you to dial.  What this usually
  117.         means is that the VenTel has already recognized the baud rate
  118.         for a session, and it isn't the one you want to use.  To correct
  119.         this, EXIT Dial and run it again, specifing the "other" baud
  120.         rate (this is easy: there are only two, namely 300 and 1200 baud).
  121.         You should now be able to establish a connection with the VenTel.
  122.         You should then Quit (Q), EXIT Dial, and run it again, using the
  123.         baud rate you wanted in the first place.
  124.  
  125.         Another limitation is related to the SEND and LOG commands, related
  126.         to flow control (XON/XOFF).  The DEC-20 cannot handle high rates
  127.         of terminal input, and the way that Dial is set up, the remote
  128.         host output (including echos) is terminal input to the DEC-20.
  129.         If the DEC-20 is having problems keeping up, it will send XOFF
  130.         (Ctrl-S) to the "terminal" to tell it to shut up.  When it can
  131.         handle more input, it will send XON (Ctrl-Q) to the terminal to
  132.         resume "input".  If the remote host can't handle XON/XOFF, there
  133.         will be problems in trying to send or capture files using SEND
  134.         and LOG.
  135.  
  136. This program is not supported.  However, it's developer (and prime user)
  137. is Patrick Milligan, and you may send bugs, complaints, comments, and
  138. praise to him.  [Money would also be greatly appreciated!]
  139.  
  140.