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

  1. @echo off
  2.  
  3. echo.>>m:\xenia\ipc\ppp.flg
  4.  
  5. if %1 == 1 goto PPPLINE1
  6. if %1 == 2 goto PPPLINE2
  7. if %1 == 3 goto PPPLINE3
  8. if %1 == 4 goto PPPLINE4
  9. if %1 == 5 goto PPPLINE5
  10. if %1 == 6 goto PPPLINE6
  11.  
  12. :PPPLINE1
  13. REM PPP ON LINE 1 COM2   (RECHNER 2) Teilnetz 192.168.3.x
  14.  ppp.exe com2 %6 mru 1500 rtscts modem 192.168.3.1:192.168.3.11 netmask 255.255.255.0 priority 1 restart silent exit name gate1
  15. GOTO ENDE
  16.  
  17. :PPPLINE2
  18. REM PPP ON LINE 2 COM3   (RECHNER 2) Teilnetz 192.168.3.x
  19.  ppp.exe com3 %6 mru 1500 rtscts modem 192.168.3.2:192.168.3.12 netmask 255.255.255.0 priority 1 restart silent exit name gate2
  20. GOTO ENDE
  21.  
  22. :PPPLINE3
  23. REM PPP ON LINE 3 COM5   (RECHNER 1) Teilnetz 2.x
  24.  ppp.exe com5 %6 mru 1500 rtscts modem 192.168.2.1:192.168.2.11 netmask 255.255.255.0 priority 1 restart silent exit name gate3
  25. GOTO ENDE
  26.  
  27. :PPPLINE4
  28. REM PPP ON LINE 4 COM6   (RECHNER 1) Teilnetz 2.x
  29.  ppp.exe com6 %6 mru 1500 rtscts modem 192.168.2.2:192.168.2.12 netmask 255.255.255.0 priority 1 restart silent exit name gate4
  30. GOTO ENDE
  31.  
  32. :PPPLINE5
  33. REM PPP ON LINE 5 COM5   (RECHNER 2) Teilnetz 3.x
  34.   ppp.exe com5 %6 mru 1500 rtscts modem 192.168.3.3:192.168.3.13 netmask 255.255.255.0 priority 1 restart silent exit name gate5
  35. GOTO ENDE
  36.  
  37. :PPPLINE6
  38. REM PPP ON LINE 6 COM6   (RECHNER 2) Teilnetz 3.x
  39.   ppp.exe com6 %6 mru 1500 rtscts modem 192.168.3.4:192.168.3.14 netmask 255.255.255.0 priority 1 restart silent exit name gate6
  40. GOTO ENDE
  41.  
  42. :ENDE
  43.