I use Guacamole with RDP protocol to connect to client. This my configuration:
<connection name="RDP 20.125">
<protocol>rdp</protocol>
<param name="hostname">192.168.20.125</param>
<param name="port">3389</param>
<param name="username">root</param>
<param name="password">rahasia2020</param>
</connection>
But this didn't work when I tried to connect to it.
This is the error message from Guacamole:
The remote desktop server is currently unreachable, if the problem persists, please notify your system administrator, or check your system log.
This the ./configure
result:
------------------------------------------------ guacamole-server version 1.3.0 ------------------------------------------------ Library status: freerdp2 ............ yes pango ............... yes libavcodec .......... yes libavformat.......... yes libavutil ........... yes libssh2 ............. yes libssl .............. yes libswscale .......... yes libtelnet ........... yes libVNCServer ........ no libvorbis ........... yes libpulse ............ yes libwebsockets ....... yes libwebp ............. yes wsock32 ............. no Protocol support: Kubernetes .... yes RDP ........... yes SSH ........... yes Telnet ........ yes VNC ........... no Services / tools: guacd ...... yes guacenc .... yes guaclog .... yes FreeRDP plugins: /usr/lib64/freerdp2 Init scripts: no Systemd units: no Type "make" to compile guacamole-server.
And on the client side I already set RDP on port 3389. This is the result of netstat -tunlp | grep "rdp"
on the client:
tcp 0 0 127.0.0.1:3350 0.0.0.0:* LISTEN 13645/xrdp-sesman
tcp 0 0 0.0.0.0:3389 0.0.0.0:* LISTEN 13646/xrdp
So what is the problem, is there something wrong?