Re: NFS msg: Unable to find suitable address

2017-01-19 Thread Greg Wooledge
On Thu, Jan 19, 2017 at 11:29:37AM -0600, Dennis Wicks wrote:
>   > PING robin.netgear.com (192.168.254.62) 56(84) bytes of data.
>   > 64 bytes from robin.netgear.com (192.168.254.62): 
> icmp_seq=1 ttl=64 time=0.472 ms
>   > sudo mount //192.168.254.62/znfs/edrv -o user=,password= 
> /mnt
>   > Unable to find suitable address.

You're still using Windows syntax.  Use NFS syntax instead.

mount -o user=,password= robin.netgear.com:/znfs/edrv /mnt

//robin/ = Windows
robin:   = NFS



Re: NFS msg: Unable to find suitable address

2017-01-19 Thread Dennis Wicks

Kent West wrote on 01/19/2017 10:07 AM:



On Jan 19, 2017 10:03 AM, "Dennis Wicks" mailto:w...@mgssub.com>> wrote:

This is what happens:

sudo mount //robin/znfs/edrv -o user=,password= /mnt
Unable to find suitable address.


What happens if you use the IP address instead of the name
"robin"? Can you ping "robin"?

--
Kent



No difference!

> PING robin.netgear.com (192.168.254.62) 56(84) bytes of data.
	> 64 bytes from robin.netgear.com (192.168.254.62): 
icmp_seq=1 ttl=64 time=0.472 ms
		> sudo mount //192.168.254.62/znfs/edrv -o user=,password= 
/mnt

> Unable to find suitable address.





Re: NFS msg: Unable to find suitable address

2017-01-19 Thread Reco
Hi.

On Thu, 19 Jan 2017 10:01:43 -0600
Dennis Wicks  wrote:

> This is what happens:
> 
>   sudo mount //robin/znfs/edrv -o user=,password= /mnt
>   Unable to find suitable address.
> 
> The server is Jessie 8.7 and NFS-V4 (I think!)

Why guess? It listens tcp:2049 - it's nfsv4. It does not - it's nfsv3.
Jessie comes with NFS2/3/4 support, NFS4 being the default.


> The directory is exported as:
>   /znfs/edrv/ *(rw,sync,no_subtree_check,root_squash)
>

If this is a result of 'showmount -e' then it does not proof anything
(showmount always uses nfsv3). If this is a result of 'exportfs' on
server - then it's a different story.

> And the mount is: > /dev/sdf1 on /znfs/edrv type ext3 
> (rw,relatime,data=ordered)

You mean - the mountpoint on a server? Good to know, hardly relevant to
the issue.


> I can't find any info that looks like a solution to the problem.
> 
> Anybody have a clue? A hint? Seen it before?

Sure. First, nobody mounts nfs like you do. It's done differently.

Second, they give you automounter which simplifies things.

Third, assuming 'robin' is a hostname, and you're using ipv4:

sudo mount -t nfs -o soft,tcp robin:/znfs/edrv /mnt

Last, but not least - https://wiki.debian.org/NFS

Reco



Re: NFS msg: Unable to find suitable address

2017-01-19 Thread Darac Marjal

On Thu, Jan 19, 2017 at 10:01:43AM -0600, Dennis Wicks wrote:

This is what happens:

sudo mount //robin/znfs/edrv -o user=,password= /mnt
Unable to find suitable address.


I think you're using a CIFS/SMB-style address. Try

$ sudo mount robin:/znfs/edrv -o .

Take at look at the 'nfs' man page for the specification.



The server is Jessie 8.7 and NFS-V4 (I think!)

The directory is exported as:
/znfs/edrv/ *(rw,sync,no_subtree_check,root_squash)

And the mount is:	> /dev/sdf1 on /znfs/edrv type ext3 
(rw,relatime,data=ordered)


I can't find any info that looks like a solution to the problem.

Anybody have a clue? A hint? Seen it before?

As usual, Many TIA!!
Dennis



--
For more information, please reread.



Re: NFS msg: Unable to find suitable address

2017-01-19 Thread Kent West
On Jan 19, 2017 10:03 AM, "Dennis Wicks"  wrote:

This is what happens:

sudo mount //robin/znfs/edrv -o user=,password= /mnt
Unable to find suitable address.


What happens if you use the IP address instead of the name "robin"? Can you
ping "robin"?

-- 
Kent