2018-01-31 23:35:54 +00:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: Telnet Server
|
2018-03-29 22:20:55 +00:00
|
|
|
---
|
2018-12-17 18:09:42 +00:00
|
|
|
## Telnet Login Server
|
|
|
|
The Telnet *login server* provides a standard **non-secure** Telnet login experience.
|
2018-03-29 22:20:55 +00:00
|
|
|
|
2018-12-17 18:09:42 +00:00
|
|
|
## Configuration
|
|
|
|
The following configuration can be made in `config.hjson` under the `loginServers.telnet` block:
|
2018-03-29 22:20:55 +00:00
|
|
|
|
2020-06-01 04:17:56 +00:00
|
|
|
| Key | Required | Description |
|
2018-12-17 18:09:42 +00:00
|
|
|
|------|----------|-------------|
|
|
|
|
| `enabled` | :-1: Defaults to `true`. Set to `false` to disable Telnet |
|
|
|
|
| `port` | :-1: | Override the default port of `8888`. |
|
2020-06-01 04:17:56 +00:00
|
|
|
| `address` | :-1: | Sets an explicit bind address. |
|
2018-12-17 18:09:42 +00:00
|
|
|
| `firstMenu` | :-1: | First menu a telnet connected user is presented with. Defaults to `telnetConnected`. |
|
|
|
|
|
|
|
|
### Example Configuration
|
2018-03-29 22:20:55 +00:00
|
|
|
```hjson
|
|
|
|
{
|
2018-12-17 18:09:42 +00:00
|
|
|
loginServers: {
|
|
|
|
telnet: {
|
|
|
|
enabled: true
|
|
|
|
port: 8888
|
2020-06-01 04:17:56 +00:00
|
|
|
}
|
2018-12-17 18:09:42 +00:00
|
|
|
}
|
2018-03-29 22:20:55 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|