Telnet is an old protocol for bidirectional interactive text-oriented communication with remote hosts via virtual termianls. It is defined in rfc854. On modern UNIX-like systems it is replaced with more secure and flexible SSH protocol.
1
vote
2answers
907 views
send spawn id exp4 not open error in expect
My ultimate goal is to do telnet to a router and interact with it. The following expect script does not help me at all. The router does not have any user id or pasword. it is automatic login.
Expect ...
2
votes
3answers
130 views
Android Emulator: Changing network bars
Does anyone know if it's possible to change the visible network bars in the android emulator? I've searched google, tried with telnet and DDMS, but no luck.
Alternately, does anyone know where I can ...
0
votes
2answers
131 views
How exactly does the Windows telnet client work?
I'm slightly confused here. Usually when I connect Windows telnet to a simple echo server, it echoes every keystroke.
Now, for some reason it stacks a few of them and sends them to the server. Is ...
0
votes
1answer
278 views
VBscript to telnet a string with variable timestamp
I'm trying to establish a telnet connection to a listening port on a server, and to send various strings of data, one of which should be a unix timestamp. Here is an example of what I've tried to do:
...
2
votes
2answers
648 views
Curl : How to pass password containing a percent sign
I'm not using PHP, but another language for this.. just FYI. However, I included the PHP as a tag, just in case someone there has a solution...
At the moment I'm first trying to get the string right ...
1
vote
1answer
646 views
How to build concatenated sms pdu? Getting junk chars
I'm trying to build some PHP code to send SMS through telnet to a SIM server, but I'm having trouble in sending concatenated messages.
I've read some things about using padding bits to make the coded ...
1
vote
1answer
452 views
C# Connecting two tcp sockets together
I'm not sure if the title is all that informative.
I am trying to find/write a socket server that will accept a connection from the client (telnet) and then on behalf of the connected client, connect ...
2
votes
1answer
272 views
SSH to server, then telnet to device
I need to ssh to debian server and then from this server telnet to other (cisco) devices, run some commands and read response.
I've started writing C# application to connect to ssh server (using ...
0
votes
0answers
489 views
Net::Telnet using getline() or getlines() not getting all lines
If I telnet using my terminal window to the device and enter show which prints config it prints certain number of lines and -- more -- in the bottom, you can press Return or Space on the keyboard a ...
0
votes
1answer
3k views
Telnet inside a shell script
How can I run telnet inside a shell script and execute commands on the remote server?
I do not have expect installed on my solaris machine because of security reasons.
I also do not have the perl ...
0
votes
1answer
979 views
Not able to telnet / ping server installed on virtual machine
I am trying to establish connection between ZABBIX SERVER which has been installed on Ubuntu Virtual Machine and ZABBIX AGENT which has been installed on my local machine (windows).
I'm not sure ...
1
vote
2answers
520 views
Telnet with php. Control remote APC PDU
I'm trying to control remote power switch by executing some php commands.
There is a telnet library which I'm using to make a telnet connection: http://www.soucy.org/project/cisco/source.php
My ...
0
votes
1answer
180 views
executing win32ole script on remote windows machine through telnet
I am trying to create a word document on a remote windows machine. What I am trying is to telnet to the remote windows machine and run a perl script that creates word document through Win32::OLE. But ...
1
vote
1answer
456 views
Java TelnetClient InputStream closed after open
I am using Apache Commons TelnetClient to make an automated telnet interface for some switches. If I telnet to the switch directly from the machine, the connection never seems to time out. Randomly, ...
0
votes
1answer
132 views
Expect loses connection after telnet and does not send any subsequent “expect send” commands
I have a telnet session automated.. my problem is a little confusing but ill try to explain with example....
example1:
spawn telnet 172.23.144.180 2068
after 2000
send "\r"
expect "loader>"
...
0
votes
2answers
1k views
Can I grep telnet command output?
I have a telnet command which prints hundreds of lines of output, Can I grep the output?
0
votes
2answers
198 views
Telnet - why I can connect despite shortage telnet server
On Linux, when I connect from telnet from one server (client telnet) to another (there isn't telnet server) I can connect on port, which I specify (not default for telnet 23 port). I get:
Connected ...
1
vote
1answer
250 views
Telnet server enable client linemode
I am writing a little Telnet client on Arduino. How do I reactivate the Telnet client linemode after I deactivate it with the following code?
client.write(255); // IAC
client.write(251); // WILL
...
0
votes
1answer
188 views
Windows7 ApacheDS Installation - Does it also install Tomcat?
I'm trying to setup CAS and I just recently downloaded and installed ApacheDS on Windows 7.
Here's a link to the instructions I'm following:
...
0
votes
0answers
251 views
Socket server stops receiving message from client after sometime. C#
//Server Code
using System;
using System.Net.Sockets;
using System.Net;
using System.Configuration;
using System.IO;
using System.Text;
public class AsynchIOServer
{
public static void Main()
...
0
votes
1answer
414 views
Net::Telnet output of cmd timed-out
I tried to build a little telnet script to gain contact with the Net::Telnet module in Perl and I struggle with a command timeout when I try to receive the output.
$telnet = new Net::Telnet ( ...
2
votes
1answer
149 views
C/CLI .Net telnet library [closed]
I am looking to make a Mud as a way of learning programming and enjoying it. Part of this is obviously working out a server client connection via the various clients muds use to connect. This uses ...
1
vote
0answers
358 views
Send telnet commands from Android phone [closed]
I want to get some information from the user to:
Use them to send telnet command to a server from my app
and after that
Show the result of the telnet command to the user
Is there any tutorial or ...
1
vote
1answer
761 views
connection refused: how to configure apache james for localhost
I'm unclear on how to configure Apache James. The quick start guide says:
Step 4: Configure
#################
* All configuration files are embedded in jars.
* We ship in the conf foler ...
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
758 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?
1
vote
2answers
161 views
Breaking infinite loop which waits for console input java
I have a telnet code in Java using org.apache.commons.net.telnet.TelnetClient
And i am providing login information by reading "login:" from telnet server via below code,
in = ...
0
votes
0answers
210 views
Is there a way to send Telnet commands in batch using C# 4.0?
What are my options if I want to send data to a telnet server in a batch. I am using c# and .net framework 4.0.
Does anything like sending data to telnet server in a batch mode exist? I know what to ...
0
votes
1answer
112 views
Why my program not receive SIGTERM?
I am using a telnet/ssh seesion on some server to run a specific simulator progrmam, and the program rely on a SIGTERM to exit itself(if not input "exit" string interactively).
The program will ...
0
votes
0answers
124 views
How to make TELNET client for Ruby server side?
How to make TELNET client for Ruby server side? What languages can I use for TELNET client side. How can I check whether TELNET client have connected to my server? Sorryб if the question seems to be ...
0
votes
1answer
59 views
getting access to web pages on a network switch
I am trying to build a php interface to some hp and cisco switches. i have some code to connect via telnet and then parse results. But i'm just wondering if anyone know if there is a way to somehow ...
1
vote
1answer
512 views
“pattern match read eof” error for telnet connection using Perl
I am trying to open a telnet connection, execute some command, and terminate the connection. I need it to run around 1000 times. The script runs fine for some number of attempts [ say around 23 - 25 ...
0
votes
3answers
147 views
java send firmware thru telnet
Hallo i an trying to send Firmware file to modem board thru telnet.
Here is my code:
Socket s = null;
try {
SocketAddress socketAddress = new ...
0
votes
0answers
210 views
Android and Apache Commons TelnetClient
I'm trying to create a simple TelnetClient in Android using Apache Commons TelnetClient, however I'm having trouble with InputStream being blocking, and can't quite seem to find the way around it. The ...
0
votes
1answer
117 views
response to telnet codes [closed]
I am using C sockets for telnet for the fun of it.
Right after connect()ing to the server, I recv() this:
In hexadecimal:
ffffffff fffffffd 1
ffffffff fffffffd 21
ffffffff 0 ffffffa4
...
0
votes
1answer
363 views
ArgumentError: SMTP-AUTH requested but missing user name + ActionMailer
I m not able to sent mail using actionmailer everytime I try to deliver the mail using actionmailer It report me with error
ArgumentError: SMTP-AUTH requested but missing user name
This is Strange ...
0
votes
1answer
71 views
Executing Remote Applictions With Telnet
I need to setup telnet on a Ubuntu server to bypass username/password prompts but start an application on connect for the user to use.
I have installed telnetd but now I am stuck.
-1
votes
1answer
2k views
Telnet to Android Emulator with puTTy
I am using windows 7 and I need to Telnet to my android emulator to be able to run a location app. How would I go about doing that? The only tutorials I am finding have been for linux...
0
votes
2answers
2k views
telnet not working though server and client are on
i use a pc with windows 7.i tried to telnet to another host but it didn't work even though the host had enabled telnet server and i had enabled the client.So, i enabled telnet server on my pc and ...
3
votes
2answers
2k views
view SSL certificate on ports 587, 25, 110, 465, 995, 143, 993
How can I view the SSL certificate details that is being used on ports 587, 25, 110, 465, 995, 143 & 993
I need to check which domain name is being used to secure these ports.
I've search here ...
1
vote
1answer
2k views
java.net.UnknownHostException: url
I have written a java file which opens a HTTPS connection to a server that has given restricted access to call its web services from our unix server.
So we are able to ping the server ip, telnet the ...
2
votes
1answer
134 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
128 views
Getting Net::Telnet to send a character at a time?
I am trying to use Net::Telnet to login to some appliances. For the login prompt, the device requires a single character at a time for the login and password prompt. Ruby sends the whole username at ...
0
votes
1answer
333 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
2answers
216 views
Telnet Clients and Their Treatment of EOL
This is a rather convoluted question, and for that I apologize. I wrote a Linux C sockets application, a basic framework for a simplistic chat server. The server is running on my laptop. The client is ...
1
vote
1answer
347 views
Perl telnet login
$remote->waitfor('/Logoff/');
I get error sometimes saying that pattern match timed out when server is unavailable. I want to handle this error. Whenever this error occurs i want to make my script ...
1
vote
1answer
608 views
Can't close a scpi(telnet) session with echo “^]” when I use it in a script
The use of echo-e "\ 029" does not work either.
But if use strg + alt gr + ] direct in a terminal session -> it works.
Hi,
thanks for your help.
I have to ask my question more concretely:
I ...
1
vote
1answer
243 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 ...
0
votes
0answers
160 views
Send an email out of an Firefox Add-on JavaScript via SMTP server
I would like to send an email with my JavaSript Firefox add-on.
E.g. my add-on shell supervise the weather forecast and send me an email, if it will rain soon.
My first approach is sending via a ...
1
vote
1answer
1k views
Is it possible to send LDAP “requests” via telnet?
I am wondering whether is it possible or not to establish a connection to a ldap server via telnet (or some other program) and start making requests and receiving responses as I would normally do with ...