1 /*------------------------------------------------------------------------------
2 * MDK Middleware - Component ::Network:Service
3 * Copyright (c) 2004-2019 Arm Limited (or its affiliates). All rights reserved.
4 *------------------------------------------------------------------------------
5 * Name: Net_Config_Telnet_Server.h
6 * Purpose: Network Configuration for Telnet Server
8 *----------------------------------------------------------------------------*/
10 //-------- <<< Use Configuration Wizard in Context Menu >>> --------------------
13 #define TELNET_SERVER_ENABLE 1
15 // <o>Number of Connections <1-10>
16 // <i>Number of simultaneously active Telnet Connections.
18 #define TELNET_SERVER_NUM_SESSISONS 1
20 // <o>Port Number <1-65535>
21 // <i>Listening port number.
23 #define TELNET_SERVER_PORT_NUM 23
25 // <o>Idle Connection Timeout in seconds <0-3600>
26 // <i>When timeout expires, the connection is closed.
27 // <i>A value of 0 disables disconnection on timeout.
29 #define TELNET_SERVER_TOUT 120
32 // <i>When disabled, the server will not echo characters it receives.
33 // <i>Default: Not disabled
34 #define TELNET_SERVER_NO_ECHO 0
36 // <e>Enable User Authentication
37 // <i>When enabled, requires authentication of the user through
38 // <i>the credentials to access the server.
39 #define TELNET_SERVER_AUTH_ENABLE 0
41 // <e>Built-in Administrator Account
42 // <i>Enable the built-in Administrator account on the server
43 // <i>Default: Enabled
44 #define TELNET_SERVER_AUTH_ADMIN 1
46 // <s.15>Administrator Username
47 // <i>Default: "admin"
48 #define TELNET_SERVER_AUTH_USER "admin"
50 // <s.15>Administrator Password
52 #define TELNET_SERVER_AUTH_PASS ""
58 //------------- <<< end of configuration section >>> ---------------------------