Issue with rsh


 
Thread Tools Search this Thread
Operating Systems AIX Issue with rsh
# 1  
Old 06-29-2007
MySQL Issue with rsh

Hi frnz,


I am facing an odd issue with rsh.

I am trying to rsh to a destination workstation from my workstation.
The .rhosts file in the destination is having my hostname.
but when i do rsh i am prompted for the password every time.
I have added my hostname in host.equiv file also in the destination.
Could any body tell me what i need to look into.
# 2  
Old 06-29-2007
Quote:
The .rhosts file in the destination is having my hostname.
.rhosts file should contain,

Code:
<hostname> <username>

kamitsin
# 3  
Old 06-29-2007
When you refer to .rhosts do you mean $HOME/.rhosts?

Is the hostname resolveable on the target machine?
# 4  
Old 07-01-2007
In such cases I go with this practice. If I have to rsh w/o a password from nodeA to nodeB,

a) Login to nodeA

traceroute nodeB

It will say "Source should be xx.xx.xx.xx" make a note of that ip address

b) Logon to nodeA

host xx.xx.xx.xx

if it returns a host name, then use that hostname in the .rhosts file of nodeB. If it does not return a hostname, then you will need to either enter the ip address OR add a hosts entry either through a hosts file, DNS or NIS.

You need not enter the username in .rhosts to make it work , just the host name should be enough.

Regards,

Kaps
# 5  
Old 07-01-2007
Quote:
Originally Posted by sriram.s
Hi frnz,


I am facing an odd issue with rsh.

I am trying to rsh to a destination workstation from my workstation.
The .rhosts file in the destination is having my hostname.
but when i do rsh i am prompted for the password every time.
I have added my hostname in host.equiv file also in the destination.
Could any body tell me what i need to look into.
Please check the permissions (and ownership) of your .rhosts and host.equiv file and post back.
# 6  
Old 07-03-2007
For security purposes, you should look into using ssh instead of rsh. Anyone could log on to your network and spoof the name of the "trusted" host and then have access to your system without being prompted for a password. We just had an audit done against us and we were dinged for this. No more rsh for us.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Issue with "rsh" on RedHat

Hi Folks, I feel that I should be posting this in the Unix for Dummies Forum and will probably wish I'd created an account and done just that - but here goes anyway. I have two identical servers both Dell R430's both running RedHat Enterprise Server 7.4 and the same kernel, both have the same... (16 Replies)
Discussion started by: gull04
16 Replies

2. Shell Programming and Scripting

RSH issue...trigged from mainframe on UNIX

I'm invoking RSH from mainframe to trigger a shell script on unix. The Unix shell script return code is not realized back by RSH in mainframe. Even if the script finishes 'exit -1', still RSH gets RC 00 in mainframe. I want 'exit -1' to be read as RSH failure RC and 'exit 0' as RSH RC 00... (1 Reply)
Discussion started by: Yuvaraj737
1 Replies

3. Shell Programming and Scripting

rsh issue

Dear Geeks, I have already gone through the site and google for a fix. Nothing is relevant. So posting it here requesting your kind help. I am trying to take rsh and pass some commands. rsh $serverIP "top -b -d 2 -n 2" Same code i was able to run for IPs *.*.0.* but i am not able to... (2 Replies)
Discussion started by: Naga06
2 Replies

4. Solaris

rsh

How to enable rsh in solaris (7 Replies)
Discussion started by: durgaprasadr13
7 Replies

5. UNIX for Advanced & Expert Users

Rsh

Hi All, I want to execute a command from my Windows machine to Linux machine using RSH only d:> rsh <Linux machine add> -l <user_name> pwd>dir in linux machine users home directory in .rhosts file I entered the windows machine IP address and user name. In linux etc/hosts.equiv file I... (1 Reply)
Discussion started by: sarwan
1 Replies

6. Linux

Help in RSH

Hi All, I want to execute a command from my Windows machine to Linux machine. d:> rsh <Linux machine add> -l <user_name> pwd>dir in linux machine users home directory in .rhosts file I entered the windows machine IP address and user name. In linux etc/hosts.equiv file I entered the... (1 Reply)
Discussion started by: sarwan
1 Replies

7. Shell Programming and Scripting

Help on rsh

Hi, i need to xecute rsh or rexec command in order to execute the script on multiple server. The problem i am facing is when i execute rsh command with login name and hostname it ask me password interactively can some body help me how i can pass password along with the command or how to... (1 Reply)
Discussion started by: deep022in
1 Replies

8. UNIX for Dummies Questions & Answers

about rsh

I have two host ( hostA and hostB ) , now hostA can use " rsh -l userB hostB " to rsh to hostB without input the password , it work fine, but if I modify it to " rsh -l userB hostB -n "ls" " , it will pop the message "Permission denied." , could suggest what is wrong ? thx (1 Reply)
Discussion started by: ust
1 Replies

9. UNIX for Advanced & Expert Users

rsh

Hi, on .rhosts file of server2 I have : server1 user server1 root when I want to issu rsh from server1 to server2 : 1-If I'm root it is OK. 2-if I'm ordinary user I receive permission denied. What is the problem ? What is the solution ? Many thanks in advance. (4 Replies)
Discussion started by: big123456
4 Replies

10. Shell Programming and Scripting

help with rsh

I am trying to run a Perl script using rsh. I need to be able to capture the return code value, so the calling script can handle failures properly. I cannot modify the Perl script I need to run because we use it for all of our servers. Does anyone have a suggestion? (1 Reply)
Discussion started by: kscase
1 Replies
Login or Register to Ask a Question