how can i implement rlogin


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users how can i implement rlogin
# 1  
Old 08-27-2002
Error how can i implement rlogin

how can i use a rlogin with out entered a password,

someone tell me about configure the next files

/.rhosts

/etc/hosts.equiv and /etc/hosts

but i not sure about that, or there are not enough


could you tell me how to do that?
# 2  
Old 08-27-2002
You could search this site and find many post on the subject.

A good one is this post that mentions why you might want to reconsider doing it at all.
# 3  
Old 08-28-2002
don't use hosts.equiv for ROOT accounts...

The only thing you need to do is this. Add your user ID and the hostname for each box on the other box.

On host1:
#vi /.rhosts
host2 user1


On host2:
#vi /.rhosts
host1 user1


I would not recommend using hosts.equiv as it gives equivalent user privledges for root. Any other user might be okay, but I don't use it on my boxes.

Smilie Smilie
# 4  
Old 08-29-2002
My recommendation is to use SSH with a client side digital certificate with no PIN or password, if security is a concern and you control the client.

When you connect with SSH you can authenticate based on your client-side certificate that only works with your client-server digital key(s) combination. That way, you can connect without a password via a secure cryptographic tunnel (using digital certificates).

We never use any "R" commands... there are too many good and secure alternatives these days. (unless you have a very good, compelling reason, you should consider alternatives, IMHO).
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

rlogin help!

Guys, I'm running solaris 9 on two systems: 1 and 2, let's say. From 1, if I say rlogin 2, i can just login. No passwd prompt! From 2, if I say rlogin 1, it asks for the passwd. (able to login with a passwd) But, they both have the same config files, same set up, same network etc. What... (13 Replies)
Discussion started by: the_red_dove
13 Replies

2. Shell Programming and Scripting

rlogin and telnet

I want to make a script which will execute a command from a remote server like below rlogin server1 then telnet server2 (username, password will be given) now execute command (it may "ls -l *.txt") and give the output I've to do this manually but want to make it automatic Script may... (4 Replies)
Discussion started by: shoeb
4 Replies

3. Shell Programming and Scripting

no init 5 if rlogin

Solaris 8/10 on Ultra 10/45. We have a system where we are always using rlogin as root. I know, very dangerous. But anyway, I sometimes init 6 (reboot) the wrong remote machine on accident. How can I setup a script (or something) that wont let you init 5 or init 6 if there are rlogin connections?... (1 Reply)
Discussion started by: ajp7701
1 Replies

4. Shell Programming and Scripting

rlogin

Hi all, i need to remotely execute a couple of commands on anyother server, but rsh is not allowed. for that matter i am bound to use rlogin. so what i am trying to do in the script is : 1) rlogin asad 2) Wait for Login prompt 3) Waiting for Password Prompt 4) Once authenticated, execute... (4 Replies)
Discussion started by: asadlone
4 Replies

5. UNIX for Dummies Questions & Answers

Rlogin

i got a dout in rlogin . whether rlogin is same as telnet (1 Reply)
Discussion started by: shanmugam
1 Replies

6. UNIX for Dummies Questions & Answers

rlogin issues

hi i got 3 boxes, boxA, boxB, boxC i can do the below boxA> ufsdump 0fu boxB:/mydirectory/myfile /myfile boxA> rlogin boxB is okay but when i do the below boxA> ufsdump 0fu boxC:/mydirectory/myfile /myfile, system says error, boxA> rlogin boxC got error on... (5 Replies)
Discussion started by: yls177
5 Replies

7. Cybersecurity

not allow rlogin

does anyone know how to stop rlogin to my sunsolaris so I have 2 machines...I can not telnet one becouse that is not allowed but I can telnet the other and do rlogin to first one..I want to stop that.. so.. telnet A from C machine - works telnet B from C machine - does not work but... (3 Replies)
Discussion started by: amon
3 Replies

8. Shell Programming and Scripting

rlogin

I'm comparing a table from two databases on two different servers to check for equality. 1. How do I use rlogin from a script , is it like this ? rlogin -l $username $server1 where $username and $server1 are passed from the command line. 2.create a copy of that table, compress it and... (3 Replies)
Discussion started by: seaten
3 Replies

9. UNIX for Dummies Questions & Answers

rlogin

Hi, I have a script and need to use rlogin to access "server1". As there will be different servers used and there will be different usernames and passwords. Is it possible to pass the server name, username and password as arguments on the command line and the script work from there. ... (2 Replies)
Discussion started by: seaten
2 Replies

10. UNIX for Dummies Questions & Answers

Rlogin???

From any computer on our network when you rlogin into one machine (this only happens on this machine) it'll hang for about 3 minutes before loggin into that machine. If your sick of waiting you can do a <ctrl> C and then it'll rlogin into the machine it is meant to BUT it wont keep the shell... (1 Reply)
Discussion started by: merlin
1 Replies
Login or Register to Ask a Question