Yes, the is an non initialized variable so it crash the server when you use telnetSetParameters...
you can fix it, if you define it before...
Try:
- Code: Select all
// Serverkonsole
// @param port^^ Port to listen on for console connections (0 will shut down listening).
// @param consolePass Password for read/write access to console.
// @param listenPass Password for read access to console.
// @param writerPass Password for write-only access to console.
// @param remoteEcho [optional] Enable echoing back to the client, off by default.
$telnet::bindAddress = $cm_config::localIpAddress;
telnetSetParameters(4000, "consolePassword", "listenPassword", "writerPassword", false);
best regards
Christian