- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- R-services
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
04-20-2006 05:03 AM
04-20-2006 05:03 AM
Any recommendations?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 05:10 AM
04-20-2006 05:10 AM
Re: R-services
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 05:19 AM
04-20-2006 05:19 AM
Re: R-services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 05:19 AM
04-20-2006 05:19 AM
Re: R-services
You should take a look at ssh:
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 05:23 AM
04-20-2006 05:23 AM
Re: R-services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 05:34 AM
04-20-2006 05:34 AM
Solutionhttp://www.faqs.org/docs/linux_network/x-087-2-appl.remote.html
rexec is similar to remsh.
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 05:37 AM
04-20-2006 05:37 AM
Re: R-services
I don't use Secure Shell myself, but I believe that the need for having the hosts.equiv file would be eliminated. Perhaps this faq would help:
http://docs.hp.com/en/6073/FAQ-SSH.pdf
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 05:44 AM
04-20-2006 05:44 AM
Re: R-services
http://docs.hp.com/en/T1471-90019/T1471-90019.pdf
I'm sorry for stringing this out - if I had been thinking clearer, I could have put it all in one post.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 05:57 AM
04-20-2006 05:57 AM
Re: R-services
You policy is sound and openssh/Secure Shell replaces ALL the functionality.
openssh is free as are good windows/linux gui clients.
I'm teseting firezilla right now. Top notch.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 12:54 PM
04-20-2006 12:54 PM
Re: R-services
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2006 02:56 AM
04-21-2006 02:56 AM
Re: R-services
# cd /home/whoever
# ln -s /dev/null .rhosts
# ll
lrwxr-x--- 1 root sys 9 Apr 21 07:51 .rhosts -> /dev/null
This supposedly would prevent anyone from creating a .rhosts file. Any thoughts on problems this might present?
TIA,
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2006 03:10 AM
04-21-2006 03:10 AM
Re: R-services
Now it's true that you can set the sticky bit on the user's HOME directory (ie, chmod 1755 /home/some_user) and now a user can't move or remove files that are not owned by the current login. But that is a behind_the_door solution to what is a social problem. If all users are officially notified that .rhosts is not allowed in any HOME directory then a daily scan will reveal who needs a conference with management about future employment.
Security is only as strong as it's weakest link. And along that line, simply disabling the r-series daemons in inetd.conf removes the issue completely.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2006 03:58 AM
04-21-2006 03:58 AM
Re: R-services
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2006 08:12 AM
04-21-2006 08:12 AM
Re: R-services
'r' commands are not secure as they can be prone to ip spoofing. ssh helps with that by providing the so called HostbasedAuthentication; see sshd_config man pages. HostbasedAuthentication when enabled works just like the 'r' commands but ofcourse using the ssh command. To enable it you set this keyword to yes, both on the ssh server and the client. Also you need to define your trusted clients in either /etc/hosts.equiv and/or /opt/ssh/etc/shosts.equiv and/or the $HOME/.rhosts. BE AWARE that if you use the /etc/hosts.equiv you enable by default both the 'r' commands as well the the host based authentication via ssh.
But, even host authentication is not good and is considered the weakest gorm of authentication.
The best way is to use either password and or PublickeyAuthentication. PublickeyAuthentication is the best and if you use it with passphrase-less keys you can simulate the behavior of the 'r' commands via ssh.
But, once more the BEST authentication method is to use passphrase protected keys.
GOOD LUCK.
Haralambos