vlmcsd.ini 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #
  2. #
  3. # Sample vlmcsd.ini
  4. #
  5. # An ini file for vlmcsd is normally not required. It is for advanced users only.
  6. # vlmcsd uses an ini file only if specified using the -i option in the command line parameters.
  7. # There is no default ini file because vlmcsd is designed to run on many platforms.
  8. #
  9. # Every line starting with a number sign (#) or semicolon (;) is treated as a comment.
  10. # If a key word is used more than once, the last occurrence is used. The only exception
  11. # to this is Listen. You can use Listen=<ip address>[:port] more than once.
  12. #
  13. # Set ePID/HwId for Windows explicitly
  14. ;55c92734-d682-4d71-983e-d6ec3f16059f = 06401-00206-271-392041-03-1033-9600.0000-3622014 / 01 02 03 04 05 06 07 08
  15. # Set ePID for Office 2010 (including Visio and Project) explicitly
  16. ;59a52881-a989-479d-af46-f275c6370663 = 06401-00096-199-496023-03-1033-9600.0000-3622014
  17. # Set ePID for Office 2013 (including Visio and Project) explicitly
  18. ;0ff1ce15-a989-479d-af46-f275c6370663 = 06401-00206-234-409313-03-1033-9600.0000-3622014
  19. # Use custom TCP port
  20. # Command line: -P
  21. # ***The Port directive only works if vlmcsd was compiled to use MS RPC or simple sockets
  22. # ***Use Listen otherwise
  23. ;Port = 1234
  24. # Listen on all IPv4 addresses (default port 1688)
  25. # Command line: -L
  26. # Does not work with MS RPC or simple sockets, use Port=
  27. ;Listen = 0.0.0.0:1688
  28. # Listen on all IPv6 addresses (default port 1688)
  29. # Command line: -L
  30. ;Listen = [::]:1688
  31. # Allow binding to foreign IP addresses
  32. # Command line: -F0 and -F1
  33. ;FreeBind = true
  34. # Randomize ePIDs at program start up (only those that are not explicitly specified)
  35. # Command line: -r
  36. ;RandomizationLevel = 1
  37. # Use a specific culture (1033 = English US) in ePIDs even if the ePID is randomized
  38. # Command line: -C
  39. ;LCID = 1033
  40. # Set a maximum of 4 workers (forked processes or threads)
  41. # Command line: -m
  42. ;MaxWorkers = 4
  43. # Disconnect users after 30 seconds of inactivity
  44. # Command line: -t
  45. ;ConnectionTimeout = 30
  46. # Disconnect clients immediately after each request
  47. # Command line: -d and -k
  48. ;DisconnectClientsImmediately = yes
  49. # Write a pid file (a file containing the process id of vlmcsd)
  50. # Command line: -p
  51. ;PidFile = /var/run/vlmcsd.pid
  52. # Write log to /var/log/vlmcsd.log
  53. # Command line: -l (-e and -f also override this directive)
  54. ;LogFile = /var/log/vlmcsd.log
  55. # Create a verbose log
  56. # Command line: -v and -q
  57. ;LogVerbose = true
  58. # Set activation interval to 2 hours
  59. # Command line: -A
  60. ;ActivationInterval = 2h
  61. # Set renewal interval to 7 days
  62. # Command line: -R
  63. ;RenewalInterval = 7d
  64. # Run program as user vlmcsduser
  65. # Command line: -u
  66. ;user = vlmcsduser
  67. # Run program as group vlmcsdgroup
  68. # Command line: -g
  69. ;group = vlmcsdgroup
  70. # Disable or enable the NDR64 transfer syntax in RPC (default enabled)
  71. # Command line: -N0 and -B1
  72. ;UseNDR64 = true
  73. # Disable or enable bind time feature negotiation in RPC (default enabled)
  74. # Command line: -B0 and -B1
  75. ;UseBTFN = true