vlmcsd.ini 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. ;Windows = 06401-00206-471-111111-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. ;Office2010 = 06401-00096-199-222222-03-1033-9600.0000-3622014
  17. # Set ePID/HwId for Office 2013 (including Visio and Project) explicitly
  18. ;Office2013 = 06401-00206-234-333333-03-1033-9600.0000-3622014 / 01 02 03 04 05 06 07 08
  19. # Set ePID/HwId for Office 2016 (including Visio and Project) explicitly
  20. ;Office2016 = 06401-00206-437-444444-03-1033-9600.0000-3622014 / 01 02 03 04 05 06 07 08
  21. # Use custom TCP port
  22. # Command line: -P
  23. # ***The Port directive only works if vlmcsd was compiled to use MS RPC or simple sockets
  24. # ***Use Listen otherwise
  25. ;Port = 1234
  26. # Listen on all IPv4 addresses (default port 1688)
  27. # Command line: -L
  28. # Does not work with MS RPC or simple sockets, use Port=
  29. ;Listen = 0.0.0.0:1688
  30. # Listen on all IPv6 addresses (default port 1688)
  31. # Command line: -L
  32. ;Listen = [::]:1688
  33. # Listen on all private IP addresses and reject incoming requests from public IP addresses
  34. # Command line: -o
  35. # PublicIPProtectionLevel = 3
  36. # Allow binding to foreign IP addresses
  37. # Command line: -F0 and -F1
  38. ;FreeBind = true
  39. # Randomize ePIDs at program start up (only those that are not explicitly specified)
  40. # Command line: -r
  41. ;RandomizationLevel = 1
  42. # Use a specific culture (1033 = English US) in ePIDs even if the ePID is randomized
  43. # Command line: -C
  44. ;LCID = 1033
  45. # Set a maximum of 4 workers (forked processes or threads)
  46. # Command line: -m
  47. ;MaxWorkers = 4
  48. # Disconnect users after 30 seconds of inactivity
  49. # Command line: -t
  50. ;ConnectionTimeout = 30
  51. # Disconnect clients immediately after each request
  52. # Command line: -d and -k
  53. ;DisconnectClientsImmediately = yes
  54. # Write a pid file (a file containing the process id of vlmcsd)
  55. # Command line: -p
  56. ;PidFile = /var/run/vlmcsd.pid
  57. # Write log to /var/log/vlmcsd.log
  58. # Command line: -l (-e and -f also override this directive)
  59. ;LogFile = /var/log/vlmcsd.log
  60. # Don't include date and time in logs (default is true)
  61. # Command line: -T0 and -T1
  62. ;LogDateAndTime = false
  63. # Create a verbose log
  64. # Command line: -v and -q
  65. ;LogVerbose = true
  66. # Whitelist known products
  67. # Command line: -K0, -K1, -K2, -K3
  68. ;WhiteListingLevel = 0
  69. # Check that the client time is within +/- 4 hours of the system time
  70. # Command Line: -c0, -c1
  71. ;CheckClientTime = false
  72. # Set activation interval to 2 hours
  73. # Command line: -A
  74. ;ActivationInterval = 2h
  75. # Set renewal interval to 7 days
  76. # Command line: -R
  77. ;RenewalInterval = 7d
  78. # Run program as user vlmcsduser
  79. # Command line: -u
  80. ;user = vlmcsduser
  81. # Run program as group vlmcsdgroup
  82. # Command line: -g
  83. ;group = vlmcsdgroup
  84. # Disable or enable the NDR64 transfer syntax in RPC (default enabled)
  85. # Command line: -N0 and -B1
  86. ;UseNDR64 = true
  87. # Disable or enable bind time feature negotiation in RPC (default enabled)
  88. # Command line: -B0 and -B1
  89. ;UseBTFN = true