Hi Olivier,

There is an example to create connection

SET @nom_group_connexion='TC';
SET @type_group= 'ORGANIZATIONNAL'
SET @max_connexions='29';
SET @max_connexions_paruser= '1';
#---------------------------------------------
INSERT INTO guacamole_connection_group 
(connection_group_name,type,max_connections,max_connections_per_user) VALUES 
(@nom_group_connexion,@type_group, @max_connexions,@max_connexions_paruser);
#----------------------------creation serveur dans le groupe
SET @nom_connection = 'serveur_tc';
SET @proto='rdp';
INSERT INTO guacamole_connection (connection_name,protocol) VALUES 
(@nom_connection,@proto) ;

You can adapt it with file .csv for 300 servers

You have also to add your users and give them permission for each connection.

hope that help

________________________________
De : thestraychow <oliver.whitting...@gmail.com>
Envoyé : mardi 13 février 2018 14:01
À : user@guacamole.apache.org
Objet : Easiest way to get 300 servers into guacamole!

Hi guys,

I'm looking at getting a list of servers into guacamole...  I use LDAP for
auth.

Is there an easy way to take the burdon out of making each one individually!



--
Sent from: 
http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/

Reply via email to