0
votes
1answer
26 views

Opening Telnet Sessions to Cisco Device

I need to establish a telnet session with a Cisco device and send commands depending on the device reply. I tried: Headers: using System.Net; using System.Net.Sockets; Code: TelnetConnection tc ...
0
votes
0answers
20 views

Nothing is displayed when ssh a device from windows

Device connected with a windows pc and accessible with SSH protocol (able to login with ssh username and password from windows) . But am using linux system. From linux connected to windows pc using ...
0
votes
0answers
70 views

Connect to a Cisco Switch with Ruby

[EDITED] I'm trying to connect to a Cisco Switch and execute a few commands. My first try was with Net::SSH and I couldn't establish a channel. Second try was with plink and shell commands. Now I'm ...
3
votes
2answers
108 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 ...
-1
votes
1answer
46 views

I am trying to do the impossible, use a telnet connection to a windows server to browse the web [closed]

There are bound to be a lot of people jumping to conclusions about what I am going to be asking here. I ask you please read the entire post as many people jumped out with answers on IRC but nobody had ...
-2
votes
0answers
35 views

Automate Telnet To Cisco Devices [closed]

I have some Cisco Devices that I need to automate some stuff on them .. Basically, my client will be using my application to automate some things .. I know how to configure the devices .. Here is ...
0
votes
1answer
176 views

Open Port 3306 via SSH [closed]

I am trying to access a Remote MySQL database from a GoDaddy VPS. I have enabled remote access on my server but I need to open the 3306 port on GoDaddy's VPS. I was told by their suppor I would need ...
2
votes
1answer
72 views

Accessing CouchDB Futon on a remote server

I've installed CouchDB on a remote server that I have access to through a terminal telnet/ssh client. The server is running on CentOS6. I really want to be able to work with Futon, but I cannot at ...
0
votes
1answer
24 views

Is there anyway to restrict an env variable to readonly

I am using the following in openssh/telnet code, which sets the user environment. setenv("TEST_ENV", "testing", 1); But this can be modified by the user after login, is there anyway to make it ...
2
votes
4answers
165 views

Perform a SSH connection with Windows API in C/C++?

I currently have two applications, one is on Windows and one is on Linux. They need to work together (There's socket interaction between them and so on). I need to somehow make only one application, ...
2
votes
0answers
160 views

Indirect telnet connection with Java

Scenario I'm in a Java project where we have to communicate with the CLIs of other machines. Unfortunately, we can't connect to these other machines directly and another bad luck is that they only ...
0
votes
1answer
77 views

PostgreSQL struggling to connecting to database [closed]

I'm trying to connect to a PostgreSQL database remotely. Are there any instructions anywhere on how to connect via SSH/Telnet to the database? I'm trying to connect as the client, and the database ...
-2
votes
1answer
474 views

I can't connect with ssh to my server [closed]

I'm in work and i can't connect with ssh to my dedicated server, what alternatives do I have? I try teamviewer, vnc and more and is VERY slow, SSH and telnet can't connect, Thank You!
1
vote
2answers
835 views

Run a perl script on remote machine from local machine using Telnet or SSH with Perl

i want to run a Perl script in a remote machine using telnet or ssh. the script is on my local host.how can do this. can anyone please help me on this?
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
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
2answers
1k views

can you telnet to ssh? [closed]

I know you cant telnet and negotiate with HTTP server by using HTTP protocol standards example: telnet google.com 80 Trying 173.194.70.139... Connected to google.com. Escape character is '^]'. GET / ...
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 ...
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 ...
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
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 ...
3
votes
2answers
609 views

replacing telnet with ssh

I have some programs that use the Net::Telnet module to connect to several servers. Now the administrators have decided to replace the Telnet service for SSH, keeping everything else like before (for ...
0
votes
1answer
402 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
3answers
752 views

telnet through SSH

I need to connect a remote computer via ssh and then make a telnet connection to its port (telnet localhost #port) with JAVA I tried some libraries (sshd, ganymed) and succesfully login to ...
1
vote
2answers
183 views

What exactly happens in telnet/SSH connection? [closed]

How does the host machine responds to it? I tried to find by searching in google. But, I couldn't find any article which explains me better. (May be I am lacking in the googling skills). Could anyone ...
0
votes
3answers
816 views

Communicating with an SSH Server for file access using pure Java

I'm writing a program in Java using the sockets to communicate with a Telnet server which allows the users to access the file directory in an UNIX OS. When using Putty to communicate with this ...
1
vote
3answers
738 views

Telnet/SSH to a Java `ServerSocket`

I created a really simple Java program that creates a java.net.ServerSocket on an open port, x, and waits for a connection using accept (). I want to use telnet/ssh to connect to the program via port ...
1
vote
1answer
375 views

Using PHP/Python to access data from a remote telnet server over SSH

I have a CentOS 5.5 server running a local telnet daemon (which is only accessible from localhost) which prints out a list of active users on our accounting system when sent the correct commands ...
1
vote
1answer
3k views

How to enter the escape characters for telnet programmatically?

I'm using paramiko to ssh into a remote machine, this much seems to be working fine so far client.connect(hostname, port=ssh_port, username=username, key_filename=key_fname, password=password) Now ...
1
vote
2answers
79 views

Telnet disable Job Control over telnet

When logging to remote ksh using telnet (either putty or NET::Telnet) the Job Control is disabled. using ssh with the same user it works. Why? and how can I fix it? Please. :)
1
vote
1answer
180 views

Fails in Telnet works in SSH

Hi I am connecting to a remote unix and running a command there that supposed to run in the background. The problem is that when I am connecting with ssh it works fine but if I am connecting with ...
2
votes
2answers
738 views

Perl SSH connection to execute telnet

I tried the following to access a router via a central admin server as "ssh hop" server #!/usr/bin/perl -X use strict; use Net::OpenSSH; use Net::Telnet; my $lhost = "linuxserver"; my $luser = ...
1
vote
1answer
952 views

Perl ssh connection and execute telnet connection

I have multiple cisco routers configured with telnet access allowed from 5 specified hosts. Now I want to execute a perl script on one host which connects via ssh to the other hosts and checks if ...
0
votes
2answers
1k views

SSH and Telnet library for java

I'm building a Java application who connects to hosts using telnet or ssh, execute a command and then return the output. I've been using org.apache.commons.net.telnet.TelnetClient and written my own ...
1
vote
4answers
11k views

Python script - connect to SSH and run command

I already know there are ssh modules for Python, that's not for what I'm looking for. What I want to have is an python script to do the following: > connect to an [ input by user ] SSH host > ...
18
votes
4answers
9k views

C# Library for SSH and Telnet

I'm looking for a C# library that provides access to both SSH and Telnet under the same interface. What would be a good choice?
0
votes
2answers
639 views

Telnet C++ or SSH Program on Launch

I am wondering if someone can provide me with a couple c++ functions that would allow me to send and receive data over a telnet port. I've also heard that I can create a program, and have it run via ...
1
vote
4answers
4k views

Android Telnet tutorial

Are there any Telnet client source Samples or Tutorials that help Beginners (ME) understand how to open Sockets and develop apps using sockets. I went through all the samples using Eclipse and ...
1
vote
2answers
668 views

Silverlight compatible Telnet/SSH library

Is there a Silverlight compatible Telnet or SSH library.
0
votes
1answer
99 views

How do I log on to my school network from my internet network at my house?

Is there a way I can access network drives on the school network from my home.
1
vote
2answers
416 views

using telnet to connect to a ssh based server

Is it possible to use tunneling to connect to a ssh server via telnet? I'm using an API that can only telnet to a host, but that host will only accept ssh connections. If it is possible, what do I ...
1
vote
1answer
1k views

Have SSH login session redirect to interactive telnet to localhost instead

I am developing for a system that has an interactive telnet management console. Requirements dictate that we disable telnet access and add SSH instead. Changing the management console into a ...
0
votes
6answers
2k views

SSH Through Telnet Connection

Is it possible to connect to an SSH server through a Telnet connection? I am trying to connect to an SSH server from Flash, but there is no OpenSSH implementation available in ActionScript. I can ...
1
vote
3answers
858 views

How to access c# sockets server from telnet or SSH?

I've created a very simple sockets server in C# that, when given a number, returns the number doubled. I'm using TCPListener. This server currently works with a simple Winform client I put together, ...
0
votes
4answers
206 views

uploading code to dev or production server using ftp or using telnet, are they both not safe?

i still see people using ftp or telnet for work instead of sftp and ssh. is it true that using ftp or telnet can let people see the password quite easily? Who can actually see it? Update: for ...

1 2