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.

learn more… | top users | synonyms

0
votes
1answer
293 views

Sending emails via SMTP from GMail or Yahoo accounts

I'm trying to send emails from my AIR app using GMail and Yahoo's SMTP servers. (I have accounts on both of them), and surprise surprise, it just isn't happening. Warning: This might have been ...
0
votes
1answer
148 views

telnet code java from org.apache not working with windows7

I am using a sample telnet application code using package org.apache.commons.net.telnet.TelnetClient When i run this in XP, telnet session is connected and i can retrieve data from it. But When i ...
4
votes
2answers
370 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
1answer
724 views

How to capture and feed telnet using php and shell scripting?

This is what i want to accomplish using php (possibly using exce()?): telnet to a whois registrar using a program called proxychains: proxychains telent whois.someregistrar 43 if failed -> try 1 ...
0
votes
0answers
245 views

File Transfer through VPN Tunnel using IP and Pre Shared Key

I have an established VPN tunnel with my client. Now, I have their IP and Port and a pre shared key for authentication. The protocol being used for VPN tunnel is IpSec. The application on client side ...
0
votes
2answers
364 views

Why am i getting an error when when creating a TelnetClient in my android application?

i am using the eclipse Juno and am developing for android 2.3.3 api level 10 i am trying to create a TelnetClient in an android application to send commands to a telnet server. Having had the error ...
0
votes
3answers
2k views

How to automate telnet session using Expect?

I'm trying to write an expect script to automate telnet. This is what I have so far. #!/usr/bin/expect # Test expect script to telnet. spawn telnet 10.62.136.252 expect "foobox login:" send ...
0
votes
1answer
389 views

What is the fastest way to determine if a given email is valid via command line?

I want to automate the validation of a significant number of emails. My first thought was to run telnet and query the Google SMTP server with each email, but then I would have to parse the output ...
1
vote
2answers
908 views

Open xterm telnet connection (Mac OS X)

I have been trying to get this script right for hours and came pretty far, but i'm stuck by passing commands to the X11 xterm window. I need a connection to an xterm telnet server. This is the normal ...
1
vote
2answers
4k views

Teach me on Telnet script

Here is my situation. I am using a Motorola Canopy. Every time I shut down my PC or power off the modem, the ESN of my Canopy changes back from its default value. I have been running telnet again and ...
2
votes
1answer
3k views

Shell script successful telnet login, how to issue commands after that?

#!/usr/bin/expect -f spawn telnet 10.21.0.17 expect -re "login" send "admin\n" expect -re "Password" send "supersecurepassword\n" interact works as expected. Upon running the script I am logged in ...
2
votes
2answers
102 views

Turning off “Wy-60” in 4GL Informix?

We have an Informix 4GL forms interface to our database, accessed using a terminal emulator running in WY-60 or "Wyse-60" terminal emulation mode. From what I'm reading, where I would previously ...
0
votes
2answers
1k views

how to send xml over HTTP Request using telnet in java

I am trying to send an HTML POST request over telnet in Java, I have some XML content which I have to send. But when I try to achieve in java, i am getting "Connection Reset" error. But the same when ...
0
votes
1answer
198 views

How can i copy one file from one directory to another directory in JMeter?

I am trying to copy one file from one directory to another directory using Telnet Server. Can we do this in Jmeter. I am using Beanshell Sampler for that. Please anyone guide me on this. Thanks in ...
0
votes
1answer
69 views

Add parameter for process

I want to simulate Telnet using PHP. My problem is: I use proc_open to execuse command telnet. While running telnet, how can I send parameter for this command, example: open 192.168.1.1 Thanks!
1
vote
0answers
303 views

perl Net::Telnet basics

As mentioned in the cpan documentation of Net::Telnet: All output is flushed while all input is buffered. Each object contains its own input buffer. Talking crudely, is it so that the command that ...
0
votes
1answer
85 views

how to open a process in a remote server using apache telnet

i encountered a problem using the apache commons-net telnet api, and hope you can help me with it. i am connecting to a remote unix server via telnet and running a script , that at some point run an ...
2
votes
1answer
216 views

Ant script for telnet connection

How can I use ant for a telnet connection and execute a command on the target machine? Or should I use maven instead?
1
vote
2answers
446 views

TCP send command and wait for output

I have the following situation: function Mach3Code(Str: String): String; var StrOut: String; begin StrOut := ''; try IdTelnet1.Connect(); IdTelnet1.Write(Str); StrOut := ''; ...
0
votes
1answer
107 views

Get remote cmd from linux termnal

I need to run some scripts in a windows remote machine from a terminal linux, I've tried using telnet however in the windows machine it's unable and there isn't installed a ssh server. So I need other ...
0
votes
0answers
350 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
139 views

Remote console on Windows

I need to open a remote terminal on a windows server, I have to do a ssh tunnel to connect, and I can open a graphical remote desktop from my windows computer with the following: localhost:3260 ...
1
vote
0answers
254 views

How to send “ctrl+z” with ruby Net::telnet cmd method?

here's my secnario, I am writing a ruby client with Net::Telnet::new, the other side server is an ubuntu. I add an eventmachine to monitor the socket created by Net::Telnet::new. here's my ...
0
votes
2answers
17k views

Checking if port is open [closed]

I want to see if port 1878 is open on my Windows Server 2008 R2. I use VPS server, so i talked with the VPS servers company and asked them to open all ports. When i'm running telnet 172.0.0.1 1878 i ...
0
votes
0answers
358 views

Can't use netcat to script telnet

I'm trying to use netcat (nc) on Linux to script a simple port connection, which works fine from telnet. This connection works great from telnet, but I cannot get it to work in netcat. Using telnet: ...
1
vote
1answer
124 views

How can I issue a telnet command in emacs telnet mode?

I need to issue the telnet close command and normally, ^] (Ctrl-]) should work.(can't find any emacs specific telnet documentation) How can I get the telnet> prompt when I connect using M-x telnet ...
1
vote
1answer
313 views

Installed Gitolite using root (dumb), locked myself out of ssh

I tried following this guide to set up my Synology DS212J NAS: http://www.bluevariant.com/2012/05/comprehensive-guide-git-gitolite-synology-diskstation/ I tried using the user "git" to install ...
0
votes
1answer
90 views

Android - set\define emulator's port

Is there any way to define the port number of the Android emulator?
1
vote
1answer
960 views

Tutorial for telnet

package project.robot.network; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.net.ServerSocket; import java.net.Socket; import ...
0
votes
2answers
4k views

using telnet to transfer a file from/to server [closed]

Yes, I know ftp is better than telnet, but right now I'm stuck with telnet. I already can login, etc.. it's just that I can't get a file. I've googled for it and it gave me this: (from: ...
1
vote
0answers
192 views

PHP Read from socket on windows machine

I am trying to write a "simple" PHP program that should write and read string to/from a socket (telnet on port 23). Socket Connection is made using pfsockopen (or socket_connect) function and it ...
0
votes
1answer
368 views

Outgoing Telnet fails however ping works [closed]

We have an OPC Server running on windows server 2003. I am using an OPC client from a remote machine running on Windows Server 2008. From the OPC Server node, I can ping the Client node. However I am ...
1
vote
2answers
181 views

Java Telnet Applet with jsch1.4.8 cannot input

My application was using jsch 1.28 version previously and I was also using JTA 2.0 for Telnet/SSH terminal everything was working fine until I moved to the latest version of jsch 1.48, the problem I'm ...
0
votes
1answer
91 views

configure laptop for telnet/ssh [closed]

We use ssh/telnet to remotely login into other machines. I just wanted to experiment with these things and was wondering if its possible to configure my laptop to be accessed through telnet/ssh ? If ...
0
votes
1answer
297 views

Net::Telnet::Cisco to router from different source address

I have a server with eth0 and eth1. eth0 = 10.0.0.10 eth1 = 10.10.0.10 Now if I do the following, telnet uses the IP address from eth0. $device_object = Net::Telnet::Cisco->new( Host => ...
0
votes
1answer
1k views

Node.js TCP client behaving differently from Netcat/Telnet

I am issuing newline-separated text commands to a custom protocol TCP server. In the example below I issue 2 commands and receive a response written back. It works as expected in telnet and netcat: ...
1
vote
1answer
188 views

Executing remote command and saving input to file [closed]

I need to access to multiple hosts through SSH, execute a specific command (show ms info) and capture the output to a file. I need to copy that file back to my linux machine I want to use ssh and ...
0
votes
0answers
96 views

sendto() fails, cuts telnet connection and blocks program

I've been stuck with this problem for days and I really cannot figure out where this comes from. I'm doing a program communicating through UDP. I'm using the sendto() method to communicate between ...
0
votes
3answers
509 views

Telnet Using C# Console Application

I have a Server which i can telnet to it using my Windows 7. i just type telnet then open host port in Cmd and then my username and password . after it every thing will be ok and i can execute all my ...
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): ...
2
votes
1answer
3k views

Telnet to cisco switch using php

I need to telnet to cisco switch using php and execute show interface status command and get results. I tried some php classes I found on internet but none of them could connect to device. So I tried ...
0
votes
2answers
718 views

Ruby script to telnet switch

I've created the following ruby script that telnet to Cisco devices, that telnet to Cisco devices and run command 'show int status err'. require 'net/telnet' C3550_20_PterraEst = "192.168.244.20" ...
1
vote
1answer
273 views

Java - socket.isConnected returns true to ANY ip address using port 80

I am trying to establish communication with a device on my local network via the use of Socket, and verify the connection using the Socket.isConnected() method - seems simple enough, but I am getting ...
0
votes
1answer
592 views

Send multiple TELNET commands in cmd

class Program { public static void ExecuteCommand(string Command) { ProcessStartInfo ProcessInfo; Process Process; ProcessInfo = new ProcessStartInfo("cmd.exe", "/C " ...
0
votes
4answers
151 views

need some support in telnet programming [closed]

i am using Cisco Catalyst 2960, i can access switch using Command Prompt, by using telnet, ex : "telnet 192.168.1.1" then it will ask password, i will type password then command prompt is changed to ...
1
vote
1answer
197 views

Expect script problems

I am new to expect and i was using a logic to automate diconnecting telnet session where user is logged in and leave other lines as it is: for {set i 0} {$i ==4} {incr i} { send "clear line vty ...
0
votes
2answers
609 views

How to send data via telnet?

I would use telnet to send a simple string to an active service that is installed on Android emulator. Obviously this service has been developed by me, then, if required, I can also modify it. How to ...
0
votes
1answer
76 views

How to search for a library file on solaris?

I want to use openssl library files in a program. Openssl is installed on the server but I don't know by what name. How do I search for it on the server using telnet and include those files in my ...
1
vote
1answer
252 views

How to error read in expect with out executing other commands?

I am having an issue. I have a simple expect script that i call in a php script to login to a cisco terminal server to clear vty lines after a lab time is over. The logic is simple that if a user is ...
0
votes
1answer
380 views

How can I tunnel Telnet connections between two interfaces?

I have the following network: PC1 --|¯¯¯¯¯¯¯¯¯| |¯¯¯¯¯¯¯¯¯|-- board2 PC2 --| gateway |-- (eth0) [server] (eth1) --| gateway | PC3 --|_________| ...

1 5 6 7 8 9 16