- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Root access across the network
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
05-15-2002 05:07 AM
05-15-2002 05:07 AM
Root access across the network
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 05:08 AM
05-15-2002 05:08 AM
Re: Root access across the network
HTH,
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 05:12 AM
05-15-2002 05:12 AM
Re: Root access across the network
Few options
1. create an .rhosts file in the root's home directory on each of the server with the following entries
server1 root
server2 root
server3 root
Then you can do rlogin to any of the servers without entering the password.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 05:18 AM
05-15-2002 05:18 AM
Re: Root access across the network
Sorry I pressed submit by mistake. The earlier posting of mine was not complete.
> Is there something that i can do that will allow the other workstations to know that root on my workstation is the same as root on their workstations?
You can change the following passwd entry in the /etc/nsswitch.conf file of your servers
passwd: nis files
This means that the system will check the NIS server for the root user and then the local passwd file and you will have only one password for root across all your servers in the NIS domain.
I feel there are issues with this, which I want our other forum members to also contribute.
( Like what happens the NIS server is down )
-Sukant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 05:23 AM
05-15-2002 05:23 AM
Re: Root access across the network
You can try want Sukant told.
If your NIS server fails then you do have a problem. You can also create a NIS slave server which will contain the backup map files.
Regards,
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 05:32 AM
05-15-2002 05:32 AM
Re: Root access across the network
It can be prevented by creating a file
/etc/securetty
that contains the string console
File should have only root write perms.
If users need root telnet access they should login with their normal UIDs & su up to root.
Note this will NOT prevent rpc access i.e. rlogin, remsh, etc. Will ONLY prevent root telnet access from anywhere EXCEPT the console.
The other is that any .rhosts files should ONLY have user read/write perms - 0600 perms in octal. AND the user's home dir should have write restricted perms such that no other user could write a new .rhosts file into it.
Even such using .rhosts & hosts.equiv still present a significant security risk & perms on the above files should be closely watched.
Rgds,
Jeff