File tree Expand file tree Collapse file tree 3 files changed +8
-10
lines changed Expand file tree Collapse file tree 3 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ examples can be found within xrdp.ini itself.
30
30
31
31
.TP
32
32
\fB vmconnect \fR =\fI [true|false] \fR
33
- (Hyper-V VMs only). Allows the user to skip some unnecessary security
34
- checks when a virtual machine running xrdp is hosted on Hyper-V,
35
- and the user connects to it via the vmms service on TCP port 2179.
36
- In this configuration, RDP security is handled by the vmms service, and
37
- security features which are not yet added to xrdp itself can be supported.
33
+ (Hyper-V VMs only). Enables a wider support of security protocols when a
34
+ virtual machine running xrdp is hosted on Hyper-V, and the user connects
35
+ to it via the vmms service on TCP port 2179. In this configuration,
36
+ RDP security is handled by the vmms service, and security features which
37
+ are not yet added to xrdp itself can be supported.
38
38
39
39
This parameter is required in environments which do not support 'classic'
40
40
RDP encryption.
Original file line number Diff line number Diff line change @@ -332,6 +332,9 @@ read_xrdp_ini_startup_params(struct xrdp_startup_params *startup_params)
332
332
333
333
else if (g_strcasecmp (name , "use_vsock" ) == 0 )
334
334
{
335
+ LOG (LOG_LEVEL_WARNING ,
336
+ "Config parameter 'use_vsock' is obsolete. "
337
+ "Use 'port=vsock://...' instead" );
335
338
startup_params -> use_vsock = g_text2bool (val );
336
339
}
337
340
Original file line number Diff line number Diff line change @@ -22,11 +22,6 @@ fork=true
22
22
; port=vsock://<cid>:<port>
23
23
port=3389
24
24
25
- ; 'port' above should be connected to with vsock instead of tcp
26
- ; use this only with number alone in port above
27
- ; prefer use vsock://<cid>:<port> above
28
- use_vsock=false
29
-
30
25
; if used inside a Hyper-V VM through vmconnect and bound on vsock,
31
26
; turn this on to enable wider security protocol support.
32
27
#vmconnect=true
You can’t perform that action at this time.
0 commit comments