home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 / HACKER2.BIN / 264.SNETWORK.SCR < prev    next >
Text File  |  1987-09-28  |  4KB  |  92 lines

  1. !
  2. ! DISCatalog
  3. !
  4. ! Copyright (C) 1987 Westinghouse Electric Corp. -- All rights reserved.
  5. !
  6. ! This is a sample script for networks.  For the TELENET(TM) or WESPAC(TM)
  7. ! networks, DISCatalog will execute TELENET.SCR.  For another network that
  8. ! connects to the WESPAC or TELENET networks - copy this file (SNETWORK.SCR)
  9. ! to NETWORK.SCR and edit it to control your network.  To edit the script,
  10. ! change the parameters (in lower case) and remove the ! (comment character)
  11. ! from the beginning of the line.  For unused lines, leave the ! (comment
  12. ! character) at the beginning of the line.
  13. !
  14. ! If you need assistance, please call us at (412) 374-7900.
  15. !
  16.  
  17. !
  18. ! This is the connect script.  It is needed for all networks, but not all of
  19. ! the blocks may be needed.
  20. !
  21.     CLEARBUFF                           ! clear old communications
  22.  
  23. !
  24. ! This block is to get the network's attention.  It is not needed for some
  25. ! networks.
  26. !
  27. !   MESSAGE "Getting network's attention."
  28. !   WAIT 1                              ! give network a chance
  29. !   BREAK                               ! send a break and/or
  30. !   SEND "wakeup_string<CR>"            !   send wakeup string to network
  31. !   RECEIVE "response_string" time_in_sec ! look for response
  32.  
  33. !
  34. ! This block is to initialize the network.  It is not needed for some
  35. ! networks.
  36. !
  37. !   MESSAGE "Initializing network."      
  38. !   WAIT 1                              ! give network a chance
  39. !   SEND "initialize_string<CR>"        ! initialize network
  40. !   RECEIVE "response_string" time_in_sec ! look for response
  41.  
  42. !
  43. ! This block is to call the Westinghouse DISCatalog mainframe computer.  It
  44. ! is needed for all networks.
  45. !
  46.     CLEARBUFF                           ! get rid of garbage
  47.     WAIT 1                              ! give network a chance
  48.     SEND "<CR>"                         ! send return
  49.     RECEIVE "@" 5                       ! look for network response
  50.     MESSAGE "Calling mainframe computer (Takes approx. 15 seconds)."
  51.     SEND "C 422448<CR>"                 ! call DISCatalog mainframe
  52.     RECEIVE "Username: " 15             ! look for VMS response
  53.     MESSAGE "Sending username to mainframe computer (Takes approx. 10 seconds)."
  54.     SEND "CUSTOMER<CR>"                 ! send username
  55.     RECEIVE "Password: " 10             ! look for VMS response
  56.     MESSAGE "Sending password to mainframe computer (Takes approx. 10 seconds)."
  57.     SEND "CBTCUS<CR>"                   ! send password
  58.  
  59. Hangup
  60. !
  61. ! This is the hangup script.  It may not be needed by some networks.  If your
  62. ! network doesn't hangup for some reason, wait approx. 10 minutes for the
  63. ! communications to clear.  If a hangup script is needed for your network,
  64. ! not all of the blocks may be needed.
  65. !
  66.     CLEARBUFF                           ! clear old communications
  67.  
  68. !
  69. ! This block is to get the network's attention.
  70. !
  71. !   MESSAGE "Getting network's attention."
  72. !   WAIT 1                              ! give network a chance
  73. !   SEND "attention_string<CR>"         ! send attention chars
  74. !   RECEIVE "response_string" time_in_sec ! look for network
  75.  
  76. !
  77. ! This block is to disconnect from the network.
  78. !
  79. !   MESSAGE "Disconnecting from network."
  80. !   WAIT 1                              ! give network a chance
  81. !   SEND "disconnect_string<CR>"        ! disconnect from network
  82. !   RECEIVE "response_string" time_in_sec ! look for response
  83.  
  84. !
  85. ! This block is to reset the network.
  86. !
  87. !   MESSAGE "Resetting network."
  88. !   WAIT 1                              ! give network a chance
  89. !   SEND "reset_string<CR>"             ! reset network
  90. !   RECEIVE "response_string" time_in_sec ! look for response
  91.  
  92.