Hi,
Our Intranet is an Apache front end configured with HTTP Basic
authentication via LDAP to a Windows AD. Apache uses ProxyPass
websocket-tunnel to the Guac Tomcat application server.
I would like to pass the HTTP Basic authentication user name and
password to Windows 2008 R2 RDS VMs and Windows 7 VMs. I had
noauth-config.xml configured like so:
<config name="w7vdi007" protocol="rdp">
<param name="hostname" value="w7vdi007.mydomain.lcl" />
<param name="port" value="3389" />
<param name="username" value="${GUAC_USERNAME}" />
<param name="password" value="${GUAC_PASSWORD}" />
<param name="domain" value="mydomain" />
</config>
This actually worked except the GUAC_USERNAME and GUAC_PASSWORD were
the same for everyone, apparently the first one to use it.
Before I roll my own authentication, is there a BASIC_USERNAME and
BASIC_PASSWORD token?
Any other suggestions?
Thanks, PLA