Advertisement
Guest User

xrdp.ini

a guest
Jun 17th, 2021
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. [Globals]
  2. ; xrdp.ini file version number
  3. ini_version=1
  4.  
  5. ; fork a new process for each incoming connection
  6. fork=true
  7.  
  8. port=3389
  9.  
  10. use_vsock=false
  11. tcp_nodelay=true
  12. tcp_keepalive=true
  13. security_layer=negotiate
  14. crypt_level=high
  15. autorun=
  16. allow_channels=true
  17. allow_multimon=true
  18. bitmap_cache=true
  19. bitmap_compression=true
  20. bulk_compression=true
  21. #hidelogwindow=true
  22. max_bpp=32
  23. new_cursors=true
  24. ; fastpath - can be 'input', 'output', 'both', 'none'
  25. use_fastpath=both
  26. ; when true, userid/password *must* be passed on cmd line
  27. #require_credentials=true
  28. ; You can set the PAM error text in a gateway setup (MAX 256 chars)
  29. #pamerrortxt=change your password according to policy at http://url
  30.  
  31. ;
  32. ; colors used by windows in RGB format
  33. ;
  34. blue=009cb5
  35. grey=dedede
  36. #black=000000
  37. #dark_grey=808080
  38. #blue=08246b
  39. #dark_blue=08246b
  40. #white=ffffff
  41. #red=ff0000
  42. #green=00ff00
  43. #background=626c72
  44.  
  45. ; top level window background color in RGB format
  46. ls_top_window_bg_color=009cb5
  47.  
  48. ; width and height of login screen
  49. ls_width=350
  50. ls_height=430
  51.  
  52. ; login screen background color in RGB format
  53. ls_bg_color=dedede
  54.  
  55. ; optional background image filename (bmp format).
  56. #ls_background_image=
  57.  
  58. ; logo
  59. ; full path to bmp-file or file in shared folder
  60. ls_logo_filename=
  61. ls_logo_x_pos=55
  62. ls_logo_y_pos=50
  63.  
  64. ; for positioning labels such as username, password etc
  65. ls_label_x_pos=30
  66. ls_label_width=65
  67.  
  68. ; for positioning text and combo boxes next to above labels
  69. ls_input_x_pos=110
  70. ls_input_width=210
  71.  
  72. ; y pos for first label and combo box
  73. ls_input_y_pos=220
  74.  
  75. ; OK button
  76. ls_btn_ok_x_pos=142
  77. ls_btn_ok_y_pos=370
  78. ls_btn_ok_width=85
  79. ls_btn_ok_height=30
  80.  
  81. ; Cancel button
  82. ls_btn_cancel_x_pos=237
  83. ls_btn_cancel_y_pos=370
  84.  
  85. ls_btn_cancel_width=85
  86. ls_btn_cancel_height=30
  87.  
  88. [Logging]
  89. LogFile=xrdp.log
  90. LogLevel=DEBUG
  91. EnableSyslog=true
  92. SyslogLevel=DEBUG
  93. ; LogLevel and SysLogLevel could by any of: core, error, warning, info or debug
  94.  
  95. [Channels]
  96. ; Channel names not listed here will be blocked by XRDP.
  97. ; You can block any channel by setting its value to false.
  98. ; IMPORTANT! All channels are not supported in all use
  99. ; cases even if you set all values to true.
  100. ; You can override these settings on each session type
  101. ; These settings are only used if allow_channels=true
  102. rdpdr=true
  103. rdpsnd=true
  104. drdynvc=true
  105. cliprdr=true
  106. rail=true
  107. xrdpvr=true
  108. tcutils=true
  109.  
  110. ; for debugging xrdp, in section xrdp1, change port=-1 to this:
  111. #port=/tmp/.xrdp/xrdp_display_10
  112.  
  113. ; for debugging xrdp, add following line to section xrdp1
  114. #chansrvport=/tmp/.xrdp/xrdp_chansrv_socket_7210
  115.  
  116.  
  117. ;
  118. ; Session types
  119. ;
  120. ; Some session types such as Xorg, X11rdp and Xvnc start a display server.
  121. ; Startup command-line parameters for the display server are configured
  122. ; in sesman.ini. See and configure also sesman.ini.
  123. [Xorg]
  124. name=Xorg
  125. lib=libxup.so
  126. username=ask
  127. password=ask
  128. ip=127.0.0.1
  129. port=-1
  130. code=20
  131.  
  132. [Xvnc]
  133. name=Xvnc
  134. lib=libvnc.so
  135. username=ask
  136. password=ask
  137. ip=127.0.0.1
  138. port=-1
  139. #xserverbpp=24
  140. #delay_ms=2000
  141.  
  142. [vnc-any]
  143. name=vnc-any
  144. lib=libvnc.so
  145. ip=ask
  146. port=ask5900
  147. username=na
  148. password=ask
  149. #pamusername=asksame
  150. #pampassword=asksame
  151. #pamsessionmng=127.0.0.1
  152. #delay_ms=2000
  153.  
  154. [neutrinordp-any]
  155. name=neutrinordp-any
  156. lib=libxrdpneutrinordp.so
  157. ip=ask
  158. port=ask3389
  159. username=ask
  160. password=ask
  161.  
  162.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement