Networking

Unix and Linux network configuration. Multiple network interfaces. Bridged NICs. High-availability network configurations.

Applications

Reviews of latest Unix and Linux software. Helpful tips for application support admins. Automating application support.

Data

Disk partitioning, filesystems, directories, and files. Volume management, logical volumes, HA filesystems. Backups and disaster recovery.

Monitoring

Distributed server monitoring. Server performance and capacity planning. Monitoring applications, network status and user activity.

Commands & Shells

Cool Unix shell commands and options. Command-line tools and application. Things every Unix sysadmin needs to know.

Home » Networking

RPC: Authentication When Mounting Solaris NFS Share

Submitted by on August 16, 2013 – 1:37 pm

When mounting an NFS share from a Solaris 10 server, you may encounter the “RPC: Authentication” error. You may notice that you are able to mount the share via NFSv4, not not NFSv3. On the NFS server the /var/adm/messages may show the following errors for  the client:

rpcbind: [ID 702911 daemon.warning] refused connect from <IP> to getport()

Edit the “/etc/hosts.deny” file and comment out the line “ALL: ALL”. Here’s an example of the standard hosts.deny file on Solaris 10u6:
# Copyright (c) 2002 by Sun Microsystems, Inc.
# All rights reserved.
#
#ident  "@(#)hosts.deny 1.1     02/12/04     SMI"
#
# This file is supplied as part of the Solaris Security Toolkit and
# is used to deny access to specific services as part of the Solaris 9
# TCP Wrappers implementation.  This file should be customized based
# on individual site needs.
#
#ALL:   ALL

You may need to restart NFS server:
svcadm disable network/nfs/server ; svcadm enable network/nfs/server

 

Print Friendly, PDF & Email

Leave a Reply