diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-02-19 11:09:39 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-02-19 11:09:39 +0100 |
commit | c4b7de2a754e166c67cea40b35948c851b76ca6d (patch) | |
tree | e456de34ca5b04534a887d62f9162768e9eff623 | |
parent | 71e55e0f6cb1c949656441ee4f90585590efc68f (diff) | |
download | remote-logon-service-c4b7de2a754e166c67cea40b35948c851b76ca6d.tar.gz remote-logon-service-c4b7de2a754e166c67cea40b35948c851b76ca6d.tar.bz2 remote-logon-service-c4b7de2a754e166c67cea40b35948c851b76ca6d.zip |
README(.md): Improve README(.md), rename file (-> .md), maintain README as symlink.
l---------[-rw-r--r--] | README | 8 | ||||
-rw-r--r-- | README.md | 54 |
2 files changed, 55 insertions, 7 deletions
@@ -1,7 +1 @@ -A small service to grab various remote login possibilities from the local -network configuration, network servers -that provide them, and present them to the user to log into for both -applications and full desktop posibilities. - -This project has been forked by the X2Go/Arctica Project -to support Remote Login against Linux machines via X2Go. +README.md
\ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..139cb77 --- /dev/null +++ b/README.md @@ -0,0 +1,54 @@ +# Remote Logon Service + +## Introduction + +A small service to grab various remote login possibilities from the local +network configuration, network servers that provide them, and present +them to the user to log into for both applications and full desktop +posibilities. + +This project has been forked from Ubuntu's remote-login-service project +[1] by the X2Go/Arctica Project to support Remote Login against Linux +machines via X2Go. + +## Configuring the Remote Logon Service + +The service's configuration file is located in +``` + /etc/remote-logon-service.conf +``` +Adapt the default configuration to your needs. + +### Using Arctica Session Broker as service backend + +This backend is not available, yet. + +### Using an X2Go Session Broker as service backend + +When using an X2Go Session Broker as service backend, adapt the service +configuration file like this: + +``` +[Remote Login Service] +Servers=MyUCCSTest + +[Server MyUCCSTest] +Name=Remote Login +URI=http://x2gobroker.localdomain:8080/uccs/inifile/ +``` + +## Testing the service + +After you have installed and configured the Remote Logon Service, you can +query the remote logon service manually using the ´´dbus-send´´ command: + +``` +dbus-send --session --print-reply --dest="org.ArcticaProject.RemoteLogon" \ + /org/ArcticaProject/RemoteLogon org.ArcticaProject.RemoteLogon.GetServersForLogin \ + string:'http://x2gobroker.localdomain:8080/uccs/inifile/' \ + string:'<user>' \ + string:'<password>' \ + boolean:true +``` + +[1] https://launchpad.net/remote-login-service |