home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / os2 / ospfaq87.arj / OSPFAQ87.ZIP / sample / server / ppphost1.txt < prev    next >
Text File  |  1997-11-26  |  1KB  |  37 lines

  1. /***************************************************************************/
  2. /***                   PPP-HOST Startup     Rexx-Script                  ***/
  3. /***                                                                     ***/
  4. /***                                                                     ***/
  5. /***************************************************************************/
  6.  
  7. Call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  8. Call SysLoadFuncs
  9. Call SysCls
  10. '@echo off'
  11. say "======================================================================="
  12. say ""
  13. say "                        Starte PPP-Host Interface"
  14. say ""
  15. say "======================================================================="
  16. say ""
  17. say ""
  18. say "INIT COM:2"
  19. say ""
  20. 'mode com2:57600,n,8,1,,to=ON,xon=off,idsr=on,odsr=on,octs=on,dtr=hs,rts=hs,buffer=auto'
  21. say ""
  22. say ""
  23. say "PPP wird in einer Hintergrund-Sitzung gestartet"
  24. say ""
  25. say ""
  26. 'Start "PPP-Host-GATE1" /C ppp.exe com2 57600 mru 1500 rtscts modem 192.168.2.1: netmask 255.255.255.0 priority 1 restart silent name gate1 +pap connect "slattach ATZ OK ATS0=2 OK "'
  27. call syssleep 10
  28. say " Konfiguriere Interface ...."
  29. 'ifconfig ppp0 192.168.2.1 up netmask 255.255.255.0'
  30. say "Routing auf NETZ 192.168.3.0 "
  31. 'route add NET 192.168.3.0 192.168.2.1 1'
  32. say ""
  33. say "PPP-Host is running"
  34. say ""
  35. exit
  36.  
  37.