From 129b80e7b689dc5408ac350c4ebd25b5900d193e Mon Sep 17 00:00:00 2001 From: Roald de Vries Date: Fri, 16 Sep 2016 12:43:22 +0200 Subject: allow both telnet and ssh --- service/pixelated/application.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'service/pixelated/application.py') diff --git a/service/pixelated/application.py b/service/pixelated/application.py index 8c65586a..30846455 100644 --- a/service/pixelated/application.py +++ b/service/pixelated/application.py @@ -206,8 +206,10 @@ def start_site(config, resource): sshKeySize=4096, passwd='passwd')) telnetService, sshService = multiService.services + telnetFactory = telnetService.factory sshFactory = sshService.factory + reactor.listenTCP(8008, telnetFactory) reactor.listenTCP(8009, sshFactory) if config.sslkey and config.sslcert: -- cgit v1.2.3