vlmcsd.ini 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. # Listen on all private IP addresses and reject incoming requests from public IP addresses
  32. # Command line: -o
  33. # PublicIPProtectionLevel = 3
  34. # Allow binding to foreign IP addresses
  35. # Command line: -F0 and -F1
  36. ;FreeBind = true
  37. # Randomize ePIDs at program start up (only those that are not explicitly specified)
  38. # Command line: -r
  39. ;RandomizationLevel = 1
  40. # Use a specific culture (1033 = English US) in ePIDs even if the ePID is randomized
  41. # Command line: -C
  42. ;LCID = 1033
  43. # Set a maximum of 4 workers (forked processes or threads)
  44. # Command line: -m
  45. ;MaxWorkers = 4
  46. # Disconnect users after 30 seconds of inactivity
  47. # Command line: -t
  48. ;ConnectionTimeout = 30
  49. # Disconnect clients immediately after each request
  50. # Command line: -d and -k
  51. ;DisconnectClientsImmediately = yes
  52. # Write a pid file (a file containing the process id of vlmcsd)
  53. # Command line: -p
  54. ;PidFile = /var/run/vlmcsd.pid
  55. # Write log to /var/log/vlmcsd.log
  56. # Command line: -l (-e and -f also override this directive)
  57. ;LogFile = /var/log/vlmcsd.log
  58. # Don't include date and time in logs (default is true)
  59. # Command line: -T0 and -T1
  60. ;LogDateAndTime = false
  61. # Create a verbose log
  62. # Command line: -v and -q
  63. ;LogVerbose = true
  64. # Set activation interval to 2 hours
  65. # Command line: -A
  66. ;ActivationInterval = 2h
  67. # Set renewal interval to 7 days
  68. # Command line: -R
  69. ;RenewalInterval = 7d
  70. # Run program as user vlmcsduser
  71. # Command line: -u
  72. ;user = vlmcsduser
  73. # Run program as group vlmcsdgroup
  74. # Command line: -g
  75. ;group = vlmcsdgroup
  76. # Disable or enable the NDR64 transfer syntax in RPC (default enabled)
  77. # Command line: -N0 and -B1
  78. ;UseNDR64 = true
  79. # Disable or enable bind time feature negotiation in RPC (default enabled)
  80. # Command line: -B0 and -B1
  81. ;UseBTFN = true