I have a Linode account and I am trying to communicate using telnet with a basic TCP/IP server written in Python (Twisted), installed in a linode with ubuntu lts:
import os
from twisted.internet import protocol, reactor
class Echo(protocol.Protocol):
def dataReceived(self, data):
self.transport.write(data)
class EchoFactory(protocol.Factory):
def buildProtocol(self, addr):
return Echo()
port = 5000
reactor.listenTCP(port, EchoFactory(), interface="<my linode's ip>")
reactor.run()
I thought I could just do telnet <my linode's ip> 5000 and be able to send and receive messages from the server, like when I test the app locally with telnet localhost <some port>
Could you please forward me to some sort of guide or reference to help me accomplish this?
I reckon I need to configure something on the linode where the server app is installed? Is it to hard? Thanks.
reactor.listenTCP(port, EchoFactory(), interface='<my linode's ip>')is not valid Python - the quote afterlinodemust be escaped. – phihag Jan 27 at 21:30