Can't mount SMB sharing from macOS (10.15) on FreeBSD 13.1 client

Hello,

I'm trying to share files between my Mac and my FreeBSD PC using SMB (macOS file sharing). The share works great between the Mac and a Windows PC, so everything is correct server-side. Trying to mount the share on FreeBSD 13.1 yields to this error:

Bash:
$ sudo mount_smbfs -I 192.168.0.2 -U patpro //cassandre/Pictures/ Pictures
Password:
mount_smbfs: unable to open connection: syserr = Connection refused

Any hint appreciated!
 
smbfs(5) only supports the deprecated and insecure SMBv1, so it's useless nowadays.

There are a few ports for accessing newer SMB versions with fusefs(5), but I'd recommend to use NFS instead when you want a FreeBSD system as the client.
 
smbfs(5) only supports the deprecated and insecure SMBv1, so it's useless nowadays.

There are a few ports for accessing newer SMB versions with fusefs(5), but I'd recommend to use NFS instead when you want a FreeBSD system as the client.
Thanks, I'll take a look at ports. NFS is not an option here, unfortunately.
 
Back
Top