mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-08-06 01:35:04 +02:00
+ NNTP docs
+ Gopher docs * Minor doc cleanup
This commit is contained in:
parent
12a1809a88
commit
e0f6847581
8 changed files with 156 additions and 36 deletions
|
@ -2,24 +2,28 @@
|
|||
layout: page
|
||||
title: Telnet Server
|
||||
---
|
||||
## Telnet Login Server
|
||||
The Telnet *login server* provides a standard **non-secure** Telnet login experience.
|
||||
|
||||
Telnet is enabled by default on port `8888` in `config.hjson`:
|
||||
## Configuration
|
||||
The following configuration can be made in `config.hjson` under the `loginServers.telnet` block:
|
||||
|
||||
| Item | Required | Description |
|
||||
|------|----------|-------------|
|
||||
| `enabled` | :-1: Defaults to `true`. Set to `false` to disable Telnet |
|
||||
| `port` | :-1: | Override the default port of `8888`. |
|
||||
| `firstMenu` | :-1: | First menu a telnet connected user is presented with. Defaults to `telnetConnected`. |
|
||||
|
||||
### Example Configuration
|
||||
```hjson
|
||||
{
|
||||
loginServers: {
|
||||
telnet: {
|
||||
enabled: true
|
||||
port: 8888
|
||||
}
|
||||
}
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue