Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.9 KiB

  1. #--------------------------------------
  2. [SPRINTNET]
  3. [SPRINTNET.PAD]
  4. [SPRINTNET.PAD.COMMAND]
  5. COMMAND =
  6. # The line above will give a delay of 2 secs - allowing the PAD to initialize
  7. [SPRINTNET.PAD.COMMAND]
  8. COMMAND =
  9. # The line above will give a delay of 2 secs - allowing the PAD to initialize
  10. [SPRINTNET.PAD.COMMAND]
  11. COMMAND = @
  12. # The @ characters sets the SPRINTNET PAD for 8 databit communication.
  13. [SPRINTNET.PAD.COMMAND]
  14. COMMAND = D*cr
  15. # The D character requests a 9600 speed.
  16. [SPRINTNET.PAD.RESPONSE]
  17. OK = *IGNORE
  18. # We dont care for the response so we ignore it.
  19. [SPRINTNET.PAD.COMMAND]
  20. COMMAND = *cr*lf
  21. # A carriage return line feed again to initialize the PAD read/write buffers
  22. [SPRINTNET.PAD.RESPONSE]
  23. OK = *IGNORE
  24. [SPRINTNET.PAD.COMMAND]
  25. COMMAND = *cr*lf
  26. # A carriage return line feed again to initialize the PAD read/write buffers
  27. [SPRINTNET.PAD.RESPONSE]
  28. OK = *IGNORE
  29. [SPRINTNET.PAD.COMMAND]
  30. COMMAND = SET 1:0,2:0,3:0,4:1,5:0,6:1,7:0,8:0,9:0,10:0,11:0*cr
  31. # Set X.3 settings on the PAD which make it work well with RAS. Broken into
  32. # two parts since the line is too long.
  33. [SPRINTNET.PAD.RESPONSE]
  34. OK = *IGNORE
  35. [SPRINTNET.PAD.COMMAND]
  36. COMMAND = SET 12:0,13:0,14:0,15:0,16:0,17:0,18:0,19:0,20:0,21:0,22:0*cr
  37. # Set the other half of X.3 parameters
  38. [SPRINTNET.PAD.RESPONSE]
  39. OK = *IGNORE
  40. [SPRINTNET.PAD.COMMAND]
  41. COMMAND = C *x25address*CR*LF
  42. # Finally try to call RAS X25 server
  43. [SPRINTNET.PAD.RESPONSE]
  44. CONNECT = *MATCH"CONNECT"
  45. X25ERROR = *cr*lf*causediags
  46. ERROR = *MATCH"CLR"
  47. ERROR = *MATCH"ERROR"
  48. # CONNECT response means that the connection completed fine.
  49. # X25ERROR response means connection attempt failed - the X25 CAUSE and
  50. # DIAGNOSTIC information will be extracted from the response and sent to the
  51. # user.
  52. # ERROR resonses are for generic failures.
  53. #--------------------------------------