Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2009 11:39 PM
03-11-2009 11:39 PM
HPUX RSH
what i am missing ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2009 11:45 PM
03-11-2009 11:45 PM
Re: HPUX RSH
It doesn't contain a list of hosts you are allowed to connect _to_ without a password. It contains a list of hosts that are allowed to connect to that system without a password.
Example: I have node1 and node2
If I want to connect from node1 to node2 without a password then I add node1 ro the .rhosts file on node2
If I want to connect from node2 to node1 without a password then I add node2 ro the .rhosts file on node1
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2009 11:48 PM
03-11-2009 11:48 PM
Re: HPUX RSH
on node1
#cat .rhosts
node1
#cat /etc/hosts.equiv
node1
If i do #remsh node1, then it is asking for password.
what i am missing ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2009 11:54 PM
03-11-2009 11:54 PM
Re: HPUX RSH
if you don't see anything you may have to enable connection logging for inetd. You toggle connection logging on and off using:
inetd -l
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2009 02:09 AM
03-12-2009 02:09 AM
Re: HPUX RSH
I would recommend enabling SSH on the system and enabling rsh
There are many documents on google like
http://saikrishbe.wordpress.com/2007/01/19/remote-login-without-password/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2009 02:10 AM
03-12-2009 02:10 AM
Re: HPUX RSH
Thank you all.