Guest User

Untitled

a guest
May 9th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. ###################################################################################################
  2. # CONSOLE AND REMOTE ACCESS
  3. #
  4. # Console.Enable
  5. # Description: Enable console.
  6. # Default: 1 - (Enabled)
  7. # 0 - (Disabled)
  8.  
  9. Console.Enable = 1
  10.  
  11. #
  12. # Ra.Enable
  13. # Description: Enable remote console (telnet).
  14. # Default: 0 - (Disabled)
  15. # 1 - (Enabled)
  16.  
  17. Ra.Enable = 1
  18.  
  19. #
  20. # Ra.IP
  21. # Description: Bind remote access to IP/hostname.
  22. # Default: "0.0.0.0" - (Bind to all IPs on the system)
  23.  
  24. Ra.IP = "0.0.0.0"
  25.  
  26. #
  27. # Ra.Port
  28. # Description: TCP port to reach the remote console.
  29. # Default: 3443
  30.  
  31. Ra.Port = 3443
  32.  
  33. #
  34. # Ra.MinLevel
  35. # Description: Required security level to use the remote console.
  36. # Default: 3
  37.  
  38. Ra.MinLevel = 3
  39.  
  40. #
  41. # SOAP.Enable
  42. # Description: Enable soap service.
  43. # Default: 0 - (Disabled)
  44. # 1 - (Enabled)
  45.  
  46. SOAP.Enabled = 1
  47.  
  48. #
  49. # SOAP.IP
  50. # Description: Bind SOAP service to IP/hostname.
  51. # Default: "127.0.0.1" - (Bind to localhost)
  52.  
  53. SOAP.IP = "0.0.0.0"
  54.  
  55. #
  56. # SOAP.Port
  57. # Description: TCP port to reach the SOAP service.
  58. # Default: 7878
  59.  
  60. SOAP.Port = 7878
  61.  
  62. #
  63. ###################################################################################################
Add Comment
Please, Sign In to add comment