Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update information for NTLM Authentication #585

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions protocols/smb.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ Username and password must be provided for authentication using NTLM. The option
- `COMPUTERNAME\username`
- `NETBIOSDOMAINNAME\username`

Alternatively, the domain can be specified by adding the realm using the following [hidden property](../tutorials/hidden_properties.md)

webdav.ntlm.workstation=REALM
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

smb.domain.default=WORKGROUP


### 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.
Expand Down
10 changes: 9 additions & 1 deletion protocols/webdav/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ Both *HTTP Basic Authentication* and *Digest Authentication* are supported.

### NTLM Authentication

Used when connecting to [SharePoint](../sharepoint.md) using WebDAV.
When connecting to a [SharePoint](../sharepoint.md) WebDAV server the domain must be provided using NTLM.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add documentation to set domain as part of username in bookmark.


The default domain is `WORKGROUP`. It can be set by using the [hidden property](../../tutorials/hidden_properties.md)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default is to set no custom domain.


webdav.ntlm.domain=WORKGROUP

If your using a custom domain you can specify it by adding the workstation using the following hidden property

webdav.ntlm.workstation=REALM
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default is set to no custom workstation.


### Integrated Windows Authentication (IWA)

Expand Down
Loading