Tagged Questions
1
vote
2answers
48 views
cant telnet from linux pc to windows pc “login Failed error”
I'm trying to telnet from Linux to Windows PC but it's showing error "login failed".
Here is my Python script. I am using pexpect module. I also tried with telnetlib but same error:
import os
import ...
1
vote
1answer
39 views
Python:Telnet password is not taking via script using pexpect
i have an issue while running my telnet script using pexpect.Problem is its taking only username from script not password.Its taking the value of password but its not entering the same.Mentioned below ...
0
votes
0answers
49 views
Telnet Connection Pooling
Background: I'm currently trying to develop a monitoring system at my job. All the nodes that need to be monitored are accessible via Telnet. Once a Telnet connection has been made, the system needs ...
1
vote
1answer
63 views
telnet from linux pc to windows pc using python script
i am trying to telnet a windows pc from linux using python script(pexpect).when i try to connect this error pop's up The operation completed successfully...Login Failed below is my python script.
...
2
votes
1answer
50 views
Can I clear the output buffer in Telnetlib on Python 2.7
I am using telnetlib to print the output after the last command i write to server
tn.write(cmd_login)
tn.write(cmd...)
tn.write(cmd_last)
print tn.expect([word],timeout)[-1]
however, when I printed ...
3
votes
2answers
109 views
Is there a way to use telnet within an ssh connection in Robot Framework?
There is a node where I ssh into and start a script remotely by Robot Framework (SSHLibrary.Start Command or Execute Command). This remote script starts a telnet connection to another node which is ...
0
votes
4answers
109 views
How can I read one line from a telnet response with Python?
I was surprised that I couldn't find this question on here.
I would like to take extract one line from a telnet response and make it a variable. (actually one number from that line). I can extract ...
-4
votes
1answer
43 views
Any way to issue telnet commands remotely ander double telnet session? [closed]
What do I need:
telnet 1.1.1.1 (no password or login required)
#connected
telnet localhost 1234
command_1
command_2
command_3
exit
exit
is there any way to write it on bash or python ?
0
votes
0answers
55 views
Telnet to remote host and issue “telnet localhost non_standard_port” on that machine, in order to issue some commands
Using python telnetlib I can connect to remote host, how I can connect to telnet on the same host if I am already under telnet connection ?
HOST = "localhost"
user = raw_input("Enter your remote ...
0
votes
1answer
114 views
Python telnet works in command line but not in script
I'm writing a python script to automatically close an Android Emulator. I used to work on a Linux environments but I'm now migrating the code to Windows. Problem is,
$ adb emu kill
Doesn't work on ...
0
votes
1answer
154 views
Telnet to router in Python Script
import getpass
import sys
import telnetlib
tn = telnetlib.Telnet("xxxxxxxx")
tn.write("xxxxxx" + "\n")
tn.write("xxxxxx" + "\n")
tn.write("show version\n")
tn.write("exit\n")
print tn.read_all()
...
-1
votes
6answers
239 views
What does “\r” do in the following script?
I am using following script to reboot my router using Telnet:
#!/usr/bin/env python
import os
import telnetlib
from time import sleep
host = "192.168.1.1"
user = "USER"
password = "PASSWORD"
cmd = ...
2
votes
2answers
193 views
Python Twisted TCP/IP Connection
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 ...
1
vote
2answers
359 views
Python 3.3 telnet issue
I have been going crazy trying to make this work. I want to collect a telnet log from python. On plain telnet I would just open telnet and use:
set logfile test.xml
The problem is that with python ...
1
vote
2answers
124 views
Heroku and Twisted
I am trying to learn Twisted, a Python framework, and I want to put a basic application online that, when it receive a message sends it back. I decided to use Heroku to host it, and I followed the ...
0
votes
0answers
91 views
Pythonic way to use persistent telnet connection?
I'm trying to write a Python (3.3, if it makes a difference) class that will communicate with a modem over a telnet connection. Basically, different commands will be sent to the modem depending on ...
1
vote
1answer
164 views
Can fabric use telnet for run() commands?
I've used fabric in the past for web development, but presently I'm doing some work on an embedded system that does not have ssh, but does have telnet.
I have a lot of testing/installation tasks that ...
3
votes
1answer
211 views
How can I use a telnet command in Python to check for absence data flow on a remote server
I have a remote server with an IP address and a port. I can connect to it using a standard command window successfully. When using the command window, I can see data flow through the window but I ...
1
vote
0answers
92 views
Man-to-Machine_language Simulators, and best way to communicate with [closed]
My question comes in 2 parts:
First part
Does anybody know an MML (Man to Machine Language) simulator or emulator.
I'm trying to to communicate with one of the telecoms-operators network elements ...
1
vote
1answer
915 views
python3 telnet socket.gaierror: [Errno 8] nodename nor servname provided, or not known
I'm trying telnet to routers based on ip addresses from hosts.txt file via python3 script. However I receive the following error:
$ ./telnet_group_1.py
10.1.1.1
Traceback (most recent call ...
0
votes
2answers
86 views
Can not start smtp in Python
I tried to start a smtp server with python with the following code:
import smtplib
smtp_server = smtplib.SMTP('localhost')
And I get the following error:
File "test.py", line 2, in <module>
...
0
votes
1answer
334 views
Very slow interaction using Python's telnetlib
I'm writing a Python script that connects to a Linux terminal over Telnet, runs a number of commands and parses the output, then based on the output runs more commands, etc.
This was quite easy to ...
1
vote
3answers
941 views
How does telnet differ from a raw tcp connection
I am trying to send commands to a server via a python script. I can see the socket connection being established on the server. But the commands I am sending across , do not seem to make it ...
4
votes
1answer
256 views
Telnet Server ubuntu - password stream
I am trying to create a Telnet Server using Python on Ubuntu 12.04. In order to be able to execute commands as a different user, I need to use the su command, which then prompts for the password. Now, ...
0
votes
0answers
82 views
How can telnet socket be prevented from closing on encountering a blank line in middle of output?
I am using telnet script from python doc modules http://docs.python.org/library/telnetlib.html
The script works fine if the output has no blank lines.
But telnet Socket closes( script terminates) if ...
1
vote
1answer
765 views
How to disable telnet echo in python telnetlib?
Hi I known that I should send 'IAC DONT ECHO' message, but how may I do that using telnetlib??
Here is my test, but it doesn't work.
#!/usr/bin/env python2
u"""test"""
# -*- coding: utf-8 -*-
...
1
vote
1answer
122 views
Call php from python over telnet
I'm trying to call some php scripts from simple telnet-server written in python. Here it's a code.
# -*- coding: utf8 -*-
#!/usr/bin/env python
# скрипт перекидывает выполнение нужного скрипта ...
0
votes
1answer
767 views
Python Persistent TCP client
I need to connect to my server(not http) with a persistent connection, to speed up some things. Could I have an example of how to do this?
2
votes
1answer
136 views
is it possible to authenticate telnet automatically?
When using telnetlib I noticed some interesting variables:
AUTHENTICATION = chr(37) # Authenticate
XAUTH = chr(41) # XAUTH
PRAGMA_LOGON = chr(138) # TELOPT PRAGMA LOGON
SSPI_LOGON = chr(139) # TELOPT ...
0
votes
1answer
337 views
How to open and search a file in a telnet session with Python
I'm using the following code to log into a server and go to a particular directory (where the logfile I want to search for a string resides). I have accomplished this with the Paramiko module (ssh), ...
1
vote
1answer
245 views
Is it possible to send “resize pty” command with telnetlib?
I am looking for a way to resize terminal when using telnetlib. I have achieved a similar effect on SSH with Paramiko's resize_pty, but I need to support telnet protocol too. Is this even possible ...
4
votes
2answers
376 views
Python - inheriting from old-style classes
I am trying to connect via telnet to a laboratory instrument. I'd like to extend the Telnet class from the telnetlib module in the standard library, to include functions specific to our instrument:
...
0
votes
0answers
353 views
Python telnetlib : Unable to telnet - 'Raw mode will not be supported' error
I want to connect to a remote host, login, run a command and save the output in a variable.
Following is the code I'm using.
import telnetlib
HOST = "172.19.35.69"
user = 'user'
password = 'pass'
tn ...
0
votes
1answer
168 views
smtp telnet python
Having some issues getting back results from telnet library but all I am getting is header and then blank waiting for input.
Any idea how can get the output from Telnet?
def smtp_test(server_info):
...
0
votes
1answer
315 views
Python - telnet - automation APC PDU
I am attempting to automation turning off connected devices to an APC PDU using python's built in telnet functionality. I believe I am able to enter in the username and password, but I cannot proceed ...
0
votes
2answers
2k views
Execute a command on remote machine using telnet in a single line
I would like to execute a command on a remote machine using telnet as,
telnet x.x.x.x command or similar
I want to include this as part of a script in Python ( subprocess ) and hence need it in one ...
0
votes
1answer
377 views
telnet to a device from server, over an existing ssh connection between client / server
Here is the issue. I was using my script to connect to a device directly over a telnet connection (from my windows desktop <=(telnet)=> to the device). Basicly, my script run some commands in TL1, ...
2
votes
2answers
210 views
What is ssh equivalent read_until and read_very_eager methods at telnet?
I will write a ssh communicator class on Python. i have telnet communicator class and i should use funtions like at telnet. Telnet communicator have read_until and read_very_eager functions.
...
0
votes
2answers
562 views
logic in pexpect
Hi I am using pexpect in Python to read ssh device information.
expObject = pexpect.spawn('/usr/bin/ssh %s@%s' % (username, device))
expObject.sendline(password)
After giving the password I have ...
0
votes
1answer
145 views
store variable to socket in python
I have a simple python telnet based chat server that lacks the functionality for users to set usernames. The full script is located here: http://paste.pound-python.org/show/16076/
Basically I create ...
1
vote
2answers
240 views
Remove input line in telnet session
Is it possible to remove the input line in a telnet session from the buffer, so when you press enter, the text you typed is removed, but still sent to the telnet server?
I know there is a way to ...
0
votes
1answer
309 views
Timeout and high cpu load problems using multiple telnet connection threads in python
I want to connect to multiple telnet hosts using threading in python, but I stumbled about an issue I'm not able to solve.
Using the following code on MAC OS X Lion / Python 2.7
import ...
0
votes
1answer
348 views
Batch execution of SAS using a Telnet connection in Python
I have been interested in finding an alternative to the UI in SAS for quite some time now. We license SAS on our server instead of our desktops, so furthermore we have to launch a remote desktop ...
0
votes
1answer
403 views
How do I setup a python, telnet proxy for a device on a different network over SSH?
Overview:
I have a device sitting on a local network to a computer that is sitting on an outside network. I would like to create a software program that allows me to seamlessly connect to the device ...
1
vote
1answer
297 views
Python Twisted — how to control buffered/unbuffered input in Telnet or SSH?
I want to write a Python Twisted server that serves text to its clients, and I want the clients to be able to write text back to manipulate the server. I will use Telnet, and the clients will use ...
0
votes
3answers
259 views
python: convert telnet application to ssh
I write a python telnet client to communicate with a server through telnet. However, many people tell me that it's no secure. How can I convert it to ssh? Should I need to totally rewrite my program?
0
votes
0answers
205 views
Send any character via telnet client with python
I want to send user's password via telnet with python. The password can be any half-width characters, for example, ";'\;'\". How can I do that? It doesn't work by passing the password directly to ...
1
vote
1answer
240 views
How to construct endpoints with t.c.telnet
My goal is to create telnet clients as endpoints per the TCP4ClientEndpoint implementation.
Here's what Im doing:
class TelnetClient( TelnetProtocol ):
...
factory = Factory()
factory.protocol ...
0
votes
1answer
1k views
connect telnet with python
I tried to connect bbs with python's library "telnetlib", try to make a robot to answer
the message. While I answered the message,the robot return more than 1 message.These are my
code.
# -*- ...
5
votes
1answer
381 views
Http through telnet with python and twisted
This is what I want to do:
web-browser --> connect to remote server through telnet(server1) --> to squid-proxy(which requires authentication) through telnet on port 80(server2)
I have written a ...

