Bring in some doc updates from master

This commit is contained in:
Bryan Ashby 2018-04-29 09:07:29 -06:00
commit ddff36dba2
10 changed files with 139 additions and 43 deletions

View file

@ -16,10 +16,11 @@ You then need to enable the SSH server in your `config.hjson`:
{
loginServers: {
ssh: {
enabled: true
enabled: true
port: 8889
privateKeyPass: YOUR_PK_PASS
}
privateKeyPem: /path/to/ssh_private_key.pem
privateKeyPass: YOUR_PK_PASS
}
}
}
```

View file

@ -1,4 +1,25 @@
---
layout: page
title: Telnet Server
---
---
Telnet is enabled by default on port `8888` in `config.hjson`:
```hjson
{
loginServers: {
telnet: {
enabled: true
port: 8888
}
}
}
```
### Telnet Server Options
| Option | Description
|---------------------|--------------------------------------------------------------------------------------|
| `firstMenu` | First menu a telnet connected user is presented with
| `enabled` | Enable/disable telnet server
| `port` | Configure a custom port for the telnet server

View file

@ -21,7 +21,7 @@ There are a few things out of scope of this document:
## Setup
1. Enable the websocket in ENiGMA, by adding `webSocket` configuration to the `loginServers` block (create it if you
1. Enable the websocket in ENiGMA, by adding `webSocket` configuration to the `loginServers` block in `config.hjson` (create it if you
don't already have it defined).
````hjson