telnet question


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers telnet question
# 1  
Old 07-17-2001
telnet question

Does anyone know a way to log into a telnet server with username and password all with one command? I have to do this remotely. I can do this with FTP with the following command under windows:

ftp -s:c:\dir\test2.txt 10.0.0.207

The "-s:filename" option is just a list of commands that occurs once the ftp server is contacted. I was wondering if there was a way to do this with telnet also. Basically, I need to automate a task from Windows to HP-UX with as much simplicity as possible and I can't do everything that I need from the FTP prompt. Any help appreciated. I have a shell script written to take care of the work once I get into the telnet server, I just need to get there first. (This is so I don't have to teach people Unix to do a simple task)
# 2  
Old 07-17-2001
Hi,

Have you tried the putty/plink freeware ssh/telnet package, it's available at:

http://www.chiark.greenend.org.uk/~sgtatham/putty/

You can send command line options to the putty program via the plink console program.

i.e.

plink myname@unixhost "acommand"

or

plink -ssh myname@unixhost "accomand" to enable ssh.

The only downside is that the user will still have to enter a password.

Hope this helps.

Andy Hibbins Smilie
# 3  
Old 10-02-2002
Question Windows command prompt

What about going the other way? I've been tasked with starting a C program in Windows from UNIX and passing it a file to process

I've not found much on starting something up like that from a UNIX box.

Feel free to flame the newbie question if I've missed something obvious.

Thanks,

Ursa Major Prime
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Difference Between Krb5-telnet And Ekrb5-telnet

Hi, I want to know the difference between these two services. Both are under xinetd. Both are used for enabling and disabling Telnet service. So, can somebody please explain me the difference between the two ? Thanks in advance :) (0 Replies)
Discussion started by: kashifsd17
0 Replies

2. UNIX for Dummies Questions & Answers

Automatically login in the telnet from present telnet

Hi, I was writing one script which includes to switch to the another telnet automatically from the present telnet server. I was using rlogin but firstly it takes the same user name of the present telnet and secondly it is prompting for the password. But i want to switch to the another telnet... (2 Replies)
Discussion started by: Prateek
2 Replies

3. IP Networking

telnet window size question

Hello! I'm writing a small telnet client using Erlang and the gen_tcp library. I receive IAC WILL ECHO and IAC WILL SUPPRESS_GO_AHEAD which I respond to. Then I receive various text output from the server, and then this: resize: unknown character, exiting. I'm curious as to why I do... (1 Reply)
Discussion started by: Gustav
1 Replies

4. Shell Programming and Scripting

Telnet Expect script question

Hi all, I have written a small expect script which should spawn a telnet session login and execute some commands. #!/usr/bin/expect -f spawn telnet $env(IP) match_max 100000 expect "login:" send -- "******\n" expect -exact "Password:" send -- "****\n" expect "%" Now I have got... (2 Replies)
Discussion started by: stinkefisch
2 Replies

5. Solaris

Question about telnet?

Hi everyone. I am newb at solaris i have 2 question 1. i am finding a way to prevent separate users to telnet similar like /etc/ftpd/ftpusers in Solaris system I know a way to disable user ftp by force user shell=/bin/false 2. or any program can do a chroot telnet user like proftpd :D ... (5 Replies)
Discussion started by: tien86
5 Replies

6. Shell Programming and Scripting

Webpage to Telnet via Perl and Expect: Telnet problem?

Somewhat long story: I have a simple Perl CGI script that uses Expect to Telnet to a device and grab some data, and then spits it back to Perl for display on the Webpage. This works for many devices I've tried, but one device just fails, it keeps rejecting the password on this device, only... (1 Reply)
Discussion started by: jondo
1 Replies

7. UNIX for Dummies Questions & Answers

Telnet question

How do I get back to Unix prompt while telneting to a router w/out exit from the telnet session? Thanks (2 Replies)
Discussion started by: oppiz
2 Replies

8. HP-UX

question about telnet to HP unix 11

When using telnet connect to HP unix 10, it will get a pty/ttyxx terminal, but using telnet connect to HP unix 11, it will get a pts/tx terminal. I want to ask is, can I using telnet connect to HP unix 11 and get a pty/ttyxx terminal ?? :confused: thx a lot (3 Replies)
Discussion started by: zetadhell
3 Replies

9. Solaris

TELNET Question

Hello All, I have a question. I have two V480 systems that can telnet to other systems on our network, but lo cannot receive a telnet from other systems. I've check the usual .rhosts, env and several other files such as the telnetrc files with no luck. I've tried all avenues before issuing... (8 Replies)
Discussion started by: mr-synapse
8 Replies

10. UNIX for Dummies Questions & Answers

Telnet timout question

ok here is a little bit on what I am trying to do. I am logged into a saolaris 9 server and telnet to another server to run an application that sits on the second unix / linux server. This application can sit idle for an hour to two and any given time. During this time the telnet session timesout... (4 Replies)
Discussion started by: Acleoma
4 Replies
Login or Register to Ask a Question