2018-02-10 20:52:26 +00:00
|
|
|
source: Extensions/Gateone.md
|
2018-10-27 23:04:34 +01:00
|
|
|
path: blob/master/doc/
|
2019-09-09 05:48:35 -05:00
|
|
|
|
2018-02-10 20:52:26 +00:00
|
|
|
# GateOne integration
|
|
|
|
|
2019-09-09 05:48:35 -05:00
|
|
|
We have simple integration for
|
|
|
|
[GateOne](https://github.com/liftoff/GateOne), you will be redirected
|
|
|
|
to your Gateone command line frontend to access your
|
|
|
|
equipment. (Currently this only works with SSH)
|
2018-02-10 20:52:26 +00:00
|
|
|
|
2019-09-09 05:48:35 -05:00
|
|
|
GateOne itself isn't included within LibreNMS, you will need to
|
|
|
|
install this separately either on the same infrastructure as LibreNMS
|
|
|
|
or as a totally standalone appliance. The installation is beyond the
|
|
|
|
scope of this document.
|
2018-02-10 20:52:26 +00:00
|
|
|
|
|
|
|
Config is simple, include the following in your `config.php`:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$config['gateone']['server'] = 'http://<your_gateone_url/';
|
|
|
|
```
|
2019-09-09 05:48:35 -05:00
|
|
|
|
2018-02-10 20:52:26 +00:00
|
|
|
**Note:** You *must* use the full url including the trailing `/`!
|
|
|
|
|
2019-09-09 05:48:35 -05:00
|
|
|
We also support prefixing the currently logged in Librenms user to the
|
|
|
|
SSH connection URL that is created, eg. `ssh://admin@localhost`\ To
|
|
|
|
enable this, put the following in your `config.php`:
|
|
|
|
|
2018-02-10 20:52:26 +00:00
|
|
|
```php
|
|
|
|
$config['gateone']['use_librenms_user'] = true;
|
|
|
|
```
|