The AROS Archives(anonymous IP: 3.15.6.77,331) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu


 Categories

   o Audio (94)
   o Datatype (15)
   o Demo (46)
   o Development (243)
   o Document (61)
   o Driver (19)
   o Emulation (60)
   o Game (506)
   o Graphics (218)
   o Library (22)
   o Network (59)
   o Office (21)
   o Utility (242)
   o Video (18)

Total files: 1624

Full index file
Recent index file

Part of aros exec
 Readme for:  Network » Samba » smb2fs.i386-aros.lha

smb2-handler

Description: SMB2/3 file system client
Download: smb2fs.i386-aros.lha       (TIPS: Use the right click menu if your browser takes you back here all the time)
Size: 82kb
Version: 53.7
Date: 18 Jun 23
Author: Fredrik Wikstrom
Submitter: Amiwell
Email: abbate_salvatore/yahoo com
Homepage: https://github.com/salass00/smb2fs
Requirements: aros abiv0 i386
Category: network/samba
Replaces: network/samba/smb2fs.i386-aros.lha
License: GPL
Distribute: yes
FileID: 2713
 
Comments: 0
Snapshots: 0
Videos: 0
Downloads: 29  (Current version)
80  (Accumulated)
Votes: 0 (0/0)  (30 days/7 days)

[Show comments] [Show snapshots] [Show videos] [Show content] [Replace file] 
smb2-handler is a filesystem for accessing files remotely using the SMB2/3
protocols. The protocol implementation is based on the currently latest git
version of libsmb2 (https://github.com/sahlberg/libsmb2).

Requirements:

- filesysbox.library 54.3 or newer.

Usage:

Create a DOSDriver with the contents:
Handler   = L:smb2-handler
StackSize = 65536
Priority  = 5
GlobVec   = -1
Startup   = "<args>"

Where <args> should follow the template:

URL/A,USER,PASSWORD,VOLUME,READONLY/S,NOPASSWORDREQ/S

URL is the address of the samba share in the format:
smb://[<domain;][<username>[:<password>]()]<host>[:<port>]/<share>/<path>

USER and PASSWORD arguments if used override the username and password (if
any) specified in the URL argument.

VOLUME is the AmigaDOS volume name (if not specified it defaults to
<server>-<share>).

READONLY sets the filesystem to read only mode.

NOPASSWORDREQ stops a password requester from being opened if no password is
specified.

To connect to the share myshare on server mypc using username "myuser" and
password "password123" use:

Startup = "smb://myuser:password123()mypc/myshare"

If the user name or password contains reserved characters (: ; ()) the 
USER and PASSWORD arguments can be used instead:

Startup = "smb://mypc/myshare USER=myuser PASSWORD=password123"

If you prefer not to store the password as plain text, you can also use its
NTLM hash with the following syntax:

Startup = "smb://mypc/myshare USER=myuser PASSWORD=ntlm:HASHABCDEF"

To connect to the same share using a guest account you can use:

Startup = "smb://mypc/myshare NOPASSWORDREQ"

To give the mounted share a custom name the VOLUME argument can be used:

Startup = "smb://mypc/myshare VOLUME=MyShare"

If you want the handler to be started immediately on mount, rather than on the
first access, then make sure that ACTIVATE=1 is set in either in the icon
tooltypes or in the DOSDriver file itself.

smb2-handler 53.7 (17.6.2023)

- Merged latest changes from libsmb2 git repository.

- AmigaOS 3 version now uses ReqTools for the password requester.

- Now uses an empty string instead of a NULL pointer when connecting to a
  share without a password.

- AROS version no longer gets SysBase by reading it from AbsExecBase.

- AROS version: Replaced fcntl() and close() calls with IoctlSocket() and
  CloseSocket().

Copyright © 2005 - 2024 The AROS Archives All Rights Reserved