Reverse-Connect VNC Guacamole #217
Unanswered
Maynardnaze
asked this question in
Q&A
Replies: 2 comments
-
Did you ever get this working? |
Beta Was this translation helpful? Give feedback.
0 replies
-
No, unfortunately. I think using an rdp container might be a better route
then reverse vnc
…On Thu, Mar 3, 2022, 5:02 PM robflate ***@***.***> wrote:
Did you ever get this working?
—
Reply to this email directly, view it on GitHub
<#217 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJIJNRDSL7W42T7J27C43ZTU6EZG3ANCNFSM5LQXXOFQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does anyone know the trick to getting Reverse connect to work? id like to keep the vnc port closed and just use guac.
ive gone through and added the reverse connection through mysql
-- Create connection
INSERT INTO guacamole_connection (connection_name, protocol) VALUES ('reverse', 'vnc');
SET @id = LAST_INSERT_ID();
-- Add parameters
INSERT INTO guacamole_connection_parameter VALUES (@id, 'hostname', 'localhost');
INSERT INTO guacamole_connection_parameter VALUES (@id, 'port', '9999');
INSERT INTO guacamole_connection_parameter VALUES (@id, 'reverse-connect', 'true');
Open the connection within Guacamole, then connect to the port on the Guacamole Server with the VNC client (eg. :9999 as shown in the example above). If you don't open the connection within Guacamole first, guacd won't be listening on the given port.
anyone know the correct way to do this?
Beta Was this translation helpful? Give feedback.
All reactions