home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 2 / AUCD2.iso / internet / acornet.spk / !Acornet / Utils / !NetConfig / Resources / Login < prev    next >
Text File  |  1996-04-06  |  599b  |  30 lines

  1. #sliplib
  2. # Provider-specific login for {{net_provider_name}}
  3. :ProviderLogin
  4. if (!wait/del=30 "{{net_login_prompt}}") goto AbortDialUp
  5. send "%node"
  6.  
  7. @if net_password_prompt$>""
  8. if (!wait/del=30 "{{net_password_prompt}}") goto AbortDialUp
  9. send "%password"
  10. @endif
  11.  
  12. @if net_protocol_prompt$>""
  13. if (!wait/del=30 "{{net_protocol_prompt}}") goto AbortDialUp
  14. send "{{net_protocol_reply}}"
  15. @endif
  16.  
  17. @if net_fixed_ip$=""
  18. @if net_ip_prefix$>""
  19. ipget {{net_ip_prefix}}
  20. @else
  21. ipget /auto
  22. @endif
  23. @endif
  24.  
  25. @if net_startup_prompt$>""
  26. if (!wait /del=30 {{net_startup_prompt}}) goto AbortDialUp
  27. @endif
  28. pause 1
  29. return 1
  30.