rlogin issues


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers rlogin issues
# 1  
Old 07-27-2006
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 boxB, and boxC, i have added the below
1) /.rhosts entries are boxA
2) inetd.conf, enabled shell... in.rshd (got 2 such entries) and
rlogin.d too... even restart the inetd daemon.


on boxA, i have added the below
1) /.rhosts entries are boxB, boxC


i noticed a KEY finding. on BoxB, i got results from the "netstat -an |
grep -i 514".. however , on BoxC, i dont any results from the same
command

when i did a telnet boxC 514 from BoxA, i got this error message "telnet : unable to connect to remote host : connection refused"

Any assistance?

Last edited by yls177; 07-28-2006 at 12:03 AM..
# 2  
Old 07-28-2006
You didn't list what the OS and versions are for all servers - that may make a difference.

Check to see if box B has a /etc/hosts.allow file and if box C has one that allows the same access.
Check to see if box B has a /etc/hosts.equiv file and if box C has one that allows the same access.
Check that the box C designation is what you think it is - box C may not be known as what you believe it is (check hosts files, hostname command output from box C versus what you put in the files on box A).
# 3  
Old 07-28-2006
All are on solaris 8

No hosts.allow or hosts.equiv

Rgds Smilie
# 4  
Old 07-30-2006
any advise?

Rgds
# 5  
Old 07-30-2006
Quote:
when i did a telnet boxC 514 from BoxA, i got this error message "telnet : unable to connect to remote host : connection refused"
This error message looks like your telnet daemon on boxC is not running.

Try "ps -aef | grep telnet" and see if anything shows up, such as "telnetd".

You also might try checking if xinetd is running. ( Replace 'telnet' with 'xinetd' above. ) If it is, check the configuration to see if telnet and/or rlogin is enabled. (In Redhat Linux, it's in the /etc/xinetd.d directory.)
# 6  
Old 07-31-2006
Hi nathan

I am telneting through port 514. so it should go through the shell instead of the normal telnet.

pls correct if i am wrong

rgds
 
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

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

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

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

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

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

7. UNIX for Advanced & Expert Users

RLOGIN problem

hi ! i ve a problem with rlogin. i have a server from which only root user can Rlogin other servers. other users can t rlogin, they get the following error : "rcmd2: socket: The file access permissions do not allow the specified action" Does somebody can help ? Thanks, Karine (3 Replies)
Discussion started by: karine
3 Replies

8. Solaris

rlogin on solaris 5.8

i have two identical Solaris 5.8 machines, on one machine I can rlogin, on the other machine I cannot, I can only telnet. Does anyone know why? FYI /etc/default/login #CONSOLE=/dev/console this is indentical on both..... (6 Replies)
Discussion started by: csaunders
6 Replies

9. UNIX for Dummies Questions & Answers

rlogin as root

I want to be able to rlogin from one SunOS box to another SunOS box as root. Additionally, I do not want to type in my password everytime. I get the ole' "Not on system console" message when I try it. I remember running into this a couple of years ago, and was able to overcome it. However, I can't... (3 Replies)
Discussion started by: cdunavent
3 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