- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- "Root" Login Over NFS
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
01-15-2001 08:27 AM
01-15-2001 08:27 AM
"Root" Login Over NFS
I have just set up NFS between my HP-UX 11 and NT 4 machines - the NT machine is using Reflection NFS Client.
I want to allow the NT machine to connect as root but cannot get this to work - I have added the server ID in the appropriate box in SAM but to no avail - whenever I try to connect I get a request denied message back from PCNFSD.
Has anyone any ideas please ?
Thanks, Eddie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2001 09:20 AM
01-15-2001 09:20 AM
Re: "Root" Login Over NFS
/exported/dir root=hostname
After this, do an 'exportfs -av' to re-export everything.
Do a 'man exports' for more information and the syntax in the /etc/exports file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2001 03:33 AM
01-16-2001 03:33 AM
Re: "Root" Login Over NFS
/tmp access=eddiew01,root=eddiew01
and have done an exportfs -av and restarted the daemons, but I still get the same message when I try to logon as root on the client.
"NFS Logon Failed: The PCNFSD daemon failed the requested authentication"
Any more thoughts ?
Thanks, Eddie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2001 06:30 AM
01-16-2001 06:30 AM
Re: "Root" Login Over NFS
Is the NT hostname known on the server? (in hosts or DNS)
Greetz, Danny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2001 06:51 AM
01-16-2001 06:51 AM
Re: "Root" Login Over NFS
Yes, the NT Server is known to the HP-UX server (hosts file)....also I can connect to the NFS services from the NT server using any username except root.
Eddie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2001 07:10 AM
01-16-2001 07:10 AM
Re: "Root" Login Over NFS
/tmp access=eddiew01,root=eddiew01
Try this line and then re-export:
/tmp root=eddiew01
I think the acess and the root are exclusive. If you have access before root, or if you have them both, then I think access takes precedence.
Try it and let us know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2001 07:28 AM
01-16-2001 07:28 AM
Re: "Root" Login Over NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2001 08:57 AM
01-16-2001 08:57 AM
Re: "Root" Login Over NFS
/tmp -root=eddiew01
Is there any way in your WRQ NFS Client to set the user name it is trying to connect as? I attempted to download a demo of their client, but it won't install on my PC.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2001 07:44 PM
01-16-2001 07:44 PM
Re: "Root" Login Over NFS
path [-restriction, restriction,...]
so the line in /etc/exports should look like
/tmp -access=eddiew01,root=eddiew01
Please note the "-" in front of access
Hope it helps...
Cheers
Vinit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2001 01:54 AM
01-17-2001 01:54 AM
Re: "Root" Login Over NFS
/tmp -anon=0
Which according to the man page should give root access to all but again I cannot login as root. I am beginning to suspect that this is not an NFS export problem but something with the root account ? Any more thoughts please.....
Eddie
PS: Patrick with Reflection NFS you can change your username on the fly and relogin or you can change it in the Reflection Network setings - I have tried both of these but it has made no difference !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2001 03:37 AM
01-17-2001 03:37 AM
Re: "Root" Login Over NFS
/tmp -access=eddiew01,root=eddiew01
I try to connect with this new account and I get the same error !
Eddie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2001 04:26 AM
01-17-2001 04:26 AM
Re: "Root" Login Over NFS
The problem is that by default the PCNFSD daemon is configured to only authenticate login requests where the UID is in the range 100-60002. If you want to change this you must create a file /etc/pcnfsd.conf and add this line to it:
uidrange 0-60002 (or your desired range)
then restart the pcnfsd - and all is OK, providing of course that you have the root= stuff we already discussed in the /etc/exports file.
Cheers for all the help.
Eddie