home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 / HACKER2.BIN / 263.SMODEM.SCR < prev    next >
Text File  |  1987-09-28  |  3KB  |  88 lines

  1. !
  2. ! DISCatalog
  3. !
  4. ! Copyright (C) 1987 Westinghouse Electric Corp. -- All rights reserved.
  5. !
  6. ! This is a sample script for modems.  For a Hayes(TM) compatible modem,
  7. ! DISCatalog will execute HAYES.SCR.  For another modem that has the autodial
  8. ! modem - copy this file (SMODEM.SCR) to MODEM.SCR and edit it to control
  9. ! your modem.  To edit the script, change the parameters (in lower case) and
  10. ! remove the ! (comment character) from the beginning of the line.  For
  11. ! unused lines, leave the ! (comment character) at the beginning of the line.
  12. !
  13. ! In addition to being used for a modem, this script may be used to control
  14. ! any device that can connect to the TELENET(TM) or WESPAC(TM) networks, such
  15. ! as a LAN or a Gandalf.
  16. !
  17. ! If you need assistance, please call us at (412) 374-7900.
  18. !
  19.  
  20. !
  21. ! This is the connect script.  It is needed for all modems, but not all of
  22. ! the blocks may be needed.
  23. !
  24.     CLEARBUFF                           ! clear old communications
  25.  
  26. !
  27. ! This block is to get the modem's attention.  It is not needed for some
  28. ! modems.
  29. !
  30. !   MESSAGE "Getting modem's attention."
  31. !   WAIT 1                              ! give modem a chance
  32. !   BREAK                               ! send a break and/or
  33. !   SEND "wakeup_string<CR>"            !   send wakeup string to modem
  34. !   RECEIVE "response_string" time_in_sec ! look for response
  35.  
  36. !
  37. ! This block is to initialize the modem.  It is not needed for some modems.
  38. !
  39. !   MESSAGE "Initializing modem."
  40. !   WAIT 1                              ! give modem a chance
  41. !   SEND "initialize_string<CR>"        ! initialize modem
  42. !   RECEIVE "response_string" time_in_sec ! look for response
  43.  
  44. !
  45. ! This block is to dial the modem to connect to TELENET or WESPAC.  It is
  46. ! needed for all modems.
  47. !
  48. !   MESSAGE "Sending dial sequence for <PR><PH> to modem."
  49. !   WAIT 1                              ! give modem a chance
  50. !   SEND "dial_string<PRwait_char><PH><CR>" ! dial the modem
  51. !   RECEIVE "connect_string" time_in_sec ! look for connection
  52. !   WAIT 5                              ! give network a chance
  53.  
  54. HANGUP
  55. !
  56. ! This is the hangup script.  It may not be needed by some modems.  If your
  57. ! modem doesn't hangup for some reason, turn your modem off and then on to
  58. ! hang it up.  If a hangup script is needed for your modem, not all of the
  59. ! blocks may be needed.
  60. !
  61.  
  62.     CLEARBUFF                           ! clear old communications
  63.  
  64. !
  65. ! This block is to get the modem's attention.
  66. !
  67. !   MESSAGE "Getting modem's attention."
  68. !   WAIT 1                              ! give modem a chance
  69. !   SEND "attention_string<CR>"         ! send attention chars
  70. !   RECEIVE "response_string" time_in_sec ! look for modem
  71.  
  72. !
  73. ! This block is to hangup the modem.
  74. !
  75. !   MESSAGE "Hanging up modem."
  76. !   WAIT 1                              ! give modem a chance
  77. !   SEND "hangup_string<CR>"            ! hang up modem
  78. !   RECEIVE "response_string" time_in_sec ! look for response
  79.  
  80. !
  81. ! This block it to reset the modem.
  82. !
  83. !   MESSAGE "Resetting modem."
  84. !   WAIT 1                              ! give modem a chance
  85. !   SEND "reset_string<CR>"             ! reset modem
  86. !   RECEIVE "response_string" time_in_sec ! look for response
  87.  
  88.