On some editor's Linux based appliance(s), there is not telnet binary installed. To test TCP netwotk flows, it's possible to use python's socket module with a short script: 1#!/usr/bin/python 23import socket 4import sys 56if len(sys.argv) != 3: 7print("usage: telnet.py IPADDRESS PORT") 8exit(-1) …
Read More