04-07-2025 01:01 AM
python telnet client response how to decode it I think it is a specific response as all cisco servers have the same response . What is the name of this text and how do I decrypt it '\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f' import socket import sys HOST = 'xxx.xxx.xxx.xxx' # this is my cisco server ip PORT = 23 import socket import gzip s = socket.socket() #Connecting using telnet s.connect((HOST,23)) a = s.recv(10000) print(str(a)) #'\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f'
04-07-2025 01:16 AM
Didn’t you already post this question https://community.cisco.com/t5/controllers/python-telnet-client-response-how-to-decode-it/td-p/5067002
is this another fake account?
04-09-2025 01:01 AM
Try to use netmiko
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide