Unable to automate telnet login


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unable to automate telnet login
# 8  
Old 03-14-2014
expect module is not installed in client unix box. so i thought of auotmating it as per my first post. but it is taking as empty charecters for password. infact iam able to login manually and run some batch script in windows but wheni automate it with the script as pe my first post its not working.
but now i just want to make sure if expect module is installed then can we make use of spwan and send commands. or we need to install speratley anything to make those send and spwan command work.
# 9  
Old 03-14-2014
The login process will empty the input buffer before reading the password you type. I suspect it was designed this way to stop people automating login.

Of course, where there is a will to automate, someone usually achieves it, hence why expect was created. Without a tool like expect on the client side, you will not be able to automate a telnet login. An alternate is to set up services to accept rlogin, rsh/resh/remsh or ssh.



Robin
# 10  
Old 03-14-2014
I have automated telnet with a ksh script. Here is the first time I did that...need script for passwd , can't use expect tool - Page 3 | Unix Linux Forums | Infrastructure Monitoring

It's clunky, but it worked.
# 11  
Old 03-14-2014
ya but only thing is Expect is enough ? or we need to install send and spwan explicitly?
# 12  
Old 03-14-2014
send and spawn are part of the expect language and not something that needs to be installed. Think of them like @sum and @avg are to Excel.

Earlier it was asked if you start from the unix client and type telnet pchost can you then manually type in a user and password and get your vbscript/batch command (s) to run? If you can do all this OK now and all you need is something to automate this already-working process then expect is fine.

If you can't do this manually expect will do nothing to help as it's just a tool to automate a manual process.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Automate OTPW login to ssh via bash script

Hello everyone. I'm a Linux novice trying out a lot of bash scripting lately, as it is so very addictive. Lately I have been setting up one of my boxes remotely and have been hardening it as much as possible. Please allow me to explain the scenario, as it does tend to become a little... (1 Reply)
Discussion started by: instro
1 Replies

2. Shell Programming and Scripting

Unable to automate SSH in Script

Hi I have a script at Server B. I want to run it from server A via another script. I tried the following command. ssh mss@247.123.456.123 "sh pm10.sh" It's getting login automatically, but while running the script through error like "reppar: command not found" where reppar is an application... (4 Replies)
Discussion started by: rajeshmepco
4 Replies

3. Shell Programming and Scripting

How to automate pbrun login through script?

Hi All, I need information regarding how to automate the pbrun process in script in Linux. Example sample script below, #!bin/sh /usr/xyz/pbrun testusr -password testpwd testusr is username for pbrun and testpwd is password for pbrun. Im not sure if it is correct way to invoke pbrun in... (2 Replies)
Discussion started by: Pravs4info
2 Replies

4. HP-UX

telnet login successful ,but ssh can not login

why I can login by telnet using root account but when i use login by ssh using root account it is not successful ,is it different password i am sure ssh service is started (2 Replies)
Discussion started by: alert0919
2 Replies

5. 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

6. Shell Programming and Scripting

Automate CVS login using shell script

Hi, Can anyone pls help me to automate login to cvs. I basically want to login to cvs and update a file. the script always gets to the login and returns the prompt for a password. Is there any way to send the password in the script itself. Here is the script: #!/bin/ksh... (0 Replies)
Discussion started by: raghu_shekar
0 Replies

7. Shell Programming and Scripting

Expect script to automate telnet session

Hi all, I am currently running a daemon which creates a virtual terminal for testing purposes. Essentially, if I were to interact with it manually, this is what I get. john@test1:~$telnet localhost 7777 Trying ::1... Connected to localhost. Escape character is '^]' mip6d> pl eth2... (6 Replies)
Discussion started by: abxccd
6 Replies

8. Solaris

Unable to login using ssh,telnet onto my solaris machine with solaris 10 installed

Hi, I am unable to login into my terminal hosting Solaris 10 and get the below error message "Server refused to allocate pty ld.so.1: sh: fatal: libc.so.1: open failed: No such file or directory " Is there anyways i can get into my machine and what kind of changes are required to be... (7 Replies)
Discussion started by: sankasu
7 Replies

9. Shell Programming and Scripting

automate Telnet ?

Hi, I have to run a script shell on a unix server from my windows PC. For that, I open a cmd windows and use Telnet to connect to the unix and run the script (by the .profile of a special user). Is it possible to automate Telnet in order to not enter the user and the password ? Anyway, has... (4 Replies)
Discussion started by: tbeghain
4 Replies

10. HP-UX

Unable to login at console and telnet

Hi friend, I'm facing a problem to access the console and telnet to the HP ux 11 server due to the system file is full. How to access this server via single mode and how to mount the folder / and folder /var? thanks. vestro (1 Reply)
Discussion started by: vestro
1 Replies
Login or Register to Ask a Question