- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SSH and .rhosts configuration
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
Discussions
Discussions
Discussions
Forums
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
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
тАО02-17-2003 12:50 PM
тАО02-17-2003 12:50 PM
SSH and .rhosts configuration
RhostsRSAauthenication yes
IgnoreRhosts no
RSAauthenication yes
I verified the ~/.shosts file is permissioned at 0400.
Still get the message "Rhosts authenication disabled" when doing ssh -v
Please advise any information. Thank you!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-17-2003 01:15 PM
тАО02-17-2003 01:15 PM
Re: SSH and .rhosts configuration
//
Whenever a client connects the daemon responds with its public host
and server keys. The client compares the RSA host key against its own
database to verify that it has not changed. The client then generates
a 256 bit random number. It encrypts this random number using both
the host key and the server key, and sends the encrypted number to the
server. Both sides then use this random number as a session key which
is used to encrypt all further communications in the session. The
rest of the session is encrypted using a conventional cipher,
currently Blowfish or 3DES, with 3DES being used by default. The
client selects the encryption algorithm to use from those offered by
the server.
Next, the server and the client enter an authentication dialog. The
client tries to authenticate itself using .rhosts authentication,
.rhosts authentication combined with RSA host authentication, RSA
challenge-response authentication, or password based authentication. //
The above process does take time. That is the reason why slogon(ssh) takes time to connect. Once the connection is successfully established, it will be normal. If you want you can lower ServerKeyBits 768 in sshd_config to get a slightly better response which is not recommended. But still it will not be like your regular rlogin.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-17-2003 03:32 PM
тАО02-17-2003 03:32 PM
Re: SSH and .rhosts configuration
That being said, to make the .rhosts work, each host needs to be in the other's /etc/hosts file. Then create a .rhost file in each users home directory. This file needs only the name of the other host, and the user name in the next column. There's things you can do with hosts.equiv, but don't bother.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-17-2003 03:39 PM
тАО02-17-2003 03:39 PM
Re: SSH and .rhosts configuration
Please advise. Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-25-2003 06:32 PM
тАО02-25-2003 06:32 PM
Re: SSH and .rhosts configuration
enjoy
Donny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-26-2003 05:34 AM
тАО02-26-2003 05:34 AM
Re: SSH and .rhosts configuration
That said, I'll reiterate that allowing rhosts authentication for sshd removes all the security benefits. If you really don't care about security, you can still just use rlogin and it will be fast as usual. Reducing the key size is a compromize...faster than large keys, but more secure that the rlogin protocol.
Hope that helps.
-Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-26-2003 05:45 AM
тАО02-26-2003 05:45 AM