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

  1. /* Provider Configuration Follows:
  2. Name        FIN_PersonalEunet    ; Name for this configuration
  3. DialUp          1
  4. Interface    ppp        ; ppp|slip
  5. InterfaceConfig ""
  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    0        ; 1 = YES, 0 = NO
  11. MTU        576        ; Provider specific
  12. Phone        03039111    ; Provider phone number (without spaces)
  13. */
  14.  
  15. /*
  16.  *    $Id$
  17.  *
  18.  *     AmiTCP/IP Dial Script for Personal Eunet Finland
  19.  *
  20.  *    Copyright © 1996 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. /* 
  33.  * You can type your login information here: 
  34.  */
  35. YourLogin="YOUR LOGIN"
  36. YourPassword="YOUR PASSWORD"
  37.  
  38. ShowConsole
  39.  
  40. call CommandState
  41.  
  42. call Dial
  43.  
  44. pause 5
  45.  
  46. Say "Dialed successfully, please log on."
  47.  
  48. if ( YourLogin = "YOUR LOGIN" ) then do
  49.   ManualConsole
  50. end
  51. else do
  52.   SendLn "" 
  53.   SendLn ""
  54.   WaitFor "login:"
  55.   SendLn YourLogin
  56.   WaitFor "password:"
  57.   SendLn YourPassword
  58. end
  59.  
  60. Set NAMESERVER1 192.26.119.7
  61. Set NAMESERVER1 192.26.119.4
  62.  
  63. Pause 2
  64. exit 0; /* succesfull exit */
  65.  
  66. error:
  67. Say "PersonalEunet: Command on line" SIGL "returned" RC ":" SerScript.LASTERROR
  68. Exit 10
  69.