summaryrefslogtreecommitdiffstats
path: root/network/guacamole-client/user-mapping.xml-sample
diff options
context:
space:
mode:
author Zhu Qun-Ying <zhu.qunying@gmail.com>2015-08-11 12:22:46 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-08-11 23:25:26 +0700
commita4ee0e7b1ba6563496e0b4ed0715ce0ec9b59d2d (patch)
tree1ef26ce3d41f100c00ecf2fde0b5980f76d58286 /network/guacamole-client/user-mapping.xml-sample
parent9b755adec9858478b89e1497d1d00ee4b3bb7d54 (diff)
downloadslackbuilds-a4ee0e7b1ba6563496e0b4ed0715ce0ec9b59d2d.tar.gz
slackbuilds-a4ee0e7b1ba6563496e0b4ed0715ce0ec9b59d2d.tar.xz
network/guacamole-client: Added (Guacamole client).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--network/guacamole-client/user-mapping.xml-sample36
1 files changed, 36 insertions, 0 deletions
diff --git a/network/guacamole-client/user-mapping.xml-sample b/network/guacamole-client/user-mapping.xml-sample
new file mode 100644
index 0000000000..2b7b74e312
--- /dev/null
+++ b/network/guacamole-client/user-mapping.xml-sample
@@ -0,0 +1,36 @@
+<user-mapping>
+
+ <!-- Per-user authentication and config information -->
+ <authorize username="USERNAME" password="PASSWORD">
+ <protocol>vnc</protocol>
+ <param name="hostname">localhost</param>
+ <param name="port">5900</param>
+ <param name="password">VNCPASS</param>
+ </authorize>
+
+ <!-- Another user, but using md5 to hash the password
+ (example below uses the md5 hash of "PASSWORD") -->
+ <authorize
+ username="USERNAME2"
+ password="319f4d26e3c536b5dd871bb2c52e3178"
+ encoding="md5">
+
+ <!-- First authorized connection -->
+ <connection name="localhost">
+ <protocol>vnc</protocol>
+ <param name="hostname">localhost</param>
+ <param name="port">5901</param>
+ <param name="password">VNCPASS</param>
+ </connection>
+
+ <!-- Second authorized connection -->
+ <connection name="otherhost">
+ <protocol>vnc</protocol>
+ <param name="hostname">otherhost</param>
+ <param name="port">5900</param>
+ <param name="password">VNCPASS</param>
+ </connection>
+
+ </authorize>
+
+</user-mapping>