Unable to automate telnet login


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unable to automate telnet login
# 1  
Old 03-05-2014
Unable to automate telnet login

i have to connect windows server from one of the unix box so i am using telnet and below is my following code
Code:
 
#!/bin/sh
host=hostname
log=loginid
port=23
pass=password
cmd1=mkdir test1234
( echo open ${host} ${port}
sleep 1
echo ${log}
sleep 3
echo "\r\n"
sleep 3
echo ${pass}
sleep 5
echo "\r\n"
sleep 3
echo ${cmd1}
sleep 1
echo exit ) | telnet

and now when i run this in the unix it is taking user id and the next password is showing empty and finally its displaying like LOGN failue: unknown username or bad password.

i dont have expect installed in my unix box so using this approach to automate.

can anyone please help me.

Last edited by Franklin52; 03-05-2014 at 08:29 AM.. Reason: Please use CODE tags, not ICODE tags for code blocks. Thanks.
# 2  
Old 03-05-2014
No, you can't do it like this. You would have to use a tool like expect, but even so, this isn't the best way. Two main alternatives exist:-
  • rsh/resh/remsh/rlogin
  • ssh
The first set uses plain ASCII text over the network to shake hands with a server that will accept your connection. It must be offering the service of course. You would set up a .rhosts file for the user you are connecting to.
The second is better in many ways and should be preferred if your server offers SSH. You can set up a key-pair and authenticate the client connection request and then usage is much easier and the connection is encrypted (data compression built in if you have lots of output)

What client and server OS and versions are you operating. Do you have any of these services available on the server, or is it really just telnet?

It also depends what you are trying to achieve. is it a true interactive login, or running a command on the server?


Regards,
Robin
Liverpool/Blackburn
UK
# 3  
Old 03-05-2014
What do you need to do on the windows box?

If you just want to transfer files could you use samba or smbclient?

How about running a scheduled task (java, vbscript or the like) to perform the operations on the windows box save the result to a file and then get unix to pick it up using smbclient?
# 4  
Old 03-14-2014
@robin:
sorry for the delay in reply as i was out of office.
tried the alternates provided by you...
rsh iand ssh s not working as it need s a third party in windows to interpret. and when iam trying with resh and remsh its says "a remote has refused an attempt to connecting...."

i am trying to achieve the following:
i have a excel sheet which contains Macros in that and that macros need to be triggered from the unix environemnet.as soon as a process completed in unix at the same time i need to trigger the vb script or a batch script which in turn triggers macro.

any suggestions to move futher is appreciated.
# 5  
Old 03-14-2014
By default a PC (or server) will not respond to ssh ftp etc even if you had software installed...
Merely because you may have to look at its internal firewall and to respond, software isnt enough, you need the related services to run... You wont be able to do anything before you have the service running...
# 6  
Old 03-14-2014
can i get the following info?
i know i can achieve this by using expect.
if i install expect module does spawn and send command works or do i need to instal anythng else arpart from this to make spwan and send work?
# 7  
Old 03-14-2014
Can you perform this task manually?

If you can, then you can use expect to automate it. If you cannot, then expect will not get you anything more.



Robin
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