home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / patches / patch2amitcp_4.3 / patch / amitcp / providers / fin_teleinetopen < prev    next >
Encoding:
Text File  |  1996-03-30  |  920 b   |  46 lines

  1. /* Provider Configuration Follows:
  2. Name        FIN_TeleInetOpen    ; Name for this configuration
  3. DialUp          1
  4. Interface    slip        ; 
  5. InterfaceConfig "VJCMode=2"    ; Use Van Jacobson header compression
  6. NeedSerial      1
  7. IPDynamic    1         ; 1 = YES, 0 = NO
  8. IPAddr                ; IP-address if static
  9. NSDynamic    1        ; 1 = YES, 0 = NO
  10. UseBootP    1        ; 1 = YES, 0 = NO
  11. MTU        576        ; Provider specific
  12. Phone        10631063    ; Provider phone number (without spaces)
  13. */
  14.  
  15. /*
  16.  *    $Id$
  17.  *
  18.  *     AmiTCP/IP Dial Script for Telecom Finland INet Open
  19.  *
  20.  *    Copyright © 1995 AmiTCP/IP Group,
  21.  *                     Network Solutions Development Inc.
  22.  *                     All rights reserved.
  23.  * 
  24.  */
  25.  
  26. options results
  27. signal on error
  28.  
  29. Set WaitForTimeout 30
  30. Set InterCharDelay 100
  31.  
  32. ShowConsole
  33.  
  34. call CommandState
  35.  
  36. call Dial
  37.  
  38. WaitFor "your system."
  39. Pause 1
  40.  
  41. exit 0; /* succesfull exit */
  42.  
  43. error:
  44. Say "TeleInetOpen: Command on line" SIGL "returned" RC ":" SerScript.LASTERROR
  45. Exit 10
  46.