-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #408 from iterate-ch/issue/407
SMB protocol support
- Loading branch information
Showing
4 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
SMB | ||
==== | ||
|
||
```{image} _images/ftp.png | ||
:alt: FTP Drive Icon | ||
:width: 128px | ||
``` | ||
|
||
```{contents} Content | ||
:depth: 2 | ||
:local: | ||
``` | ||
|
||
|
||
> [SMB (Server Message Block)](https://en.wikipedia.org/wiki/Server_Message_Block) is used to access Windows File Shares or a Samba Linux Server. | ||
## Connecting | ||
|
||
```{important} | ||
* Cyberduck [9.0.0](https://cyberduck.io/changelog/) or later required | ||
* Mountain Duck [5.0.0](https://mountainduck.io/changelog/) or later required | ||
``` | ||
|
||
To connect to a SMB server, choose _SMB (Server Message Block)_. | ||
|
||
```{image} _images/SMB_Connection.png | ||
:alt: SMB Connection | ||
:width: 700px | ||
``` | ||
|
||
### Authentication | ||
Username and password must be provided for authentication using NTLM. The optional domain name defaults to `WORKGROUP` and can be customized as part of the username in the format `REALM\username` in the _Username_ input field when adding a bookmark. Depending on the server setup this can be | ||
- `COMPUTERNAME\username` | ||
- `NETBIOSDOMAINNAME\username` | ||
|
||
### Share Name | ||
To connect to a specific share, you can configure a _Path_ in the bookmark. When omitted an attempt is made to list all available shares from the server. On failure retrieving share names from the server, a prompt is displayed to enter the share name when connecting. | ||
|
||
```{image} _images/SMB_Share.png | ||
:alt: SMB Share Input | ||
:width: 700px | ||
``` | ||
|
||
### Interoperability | ||
|
||
SMB protocol support has been tested with connections to the following server implementations | ||
- Windows 2016 Server (`SMB_3_1_1` dialect) | ||
- Windows 2022 Server (`SMB_3_1_1` dialect) | ||
- Linux Samba (`SMB_3_1_1` dialect) | ||
- macOS 13.5 (22G74) (`SMB_3_0_2` dialect) | ||
|
||
### Cyberduck CLI | ||
|
||
You can list shares with [Cyberduck CLI](https://duck.sh/) using | ||
|
||
duck --list smb:/server/share/ | ||
|
||
## Limitations | ||
- Copying or moving files between shares is not supported |