Contains a working example of the bouncing ball protocol implemented in Guacamole's guide as an example to implement custom protocols for guacd.
- Ensure guacd is installed
- Run
autoreconf -fi
to generate ./configure file - Run
./configure
to generate Makefile - Run
make
to build protocol - Run
make install
to install the bouncing ball protocol along with guacd other protocols
Now the bouncing ball protocol is installed, we need to configure a new connection in user-mapping.xml
(by default in /etc/guacamole/user-mapping.xml
).
Just add the following :
<connection name="Ball tutorial">
<protocol>ball</protocol>
</connection>