Variable: tramp-smb-options

tramp-smb-options is a customizable variable defined in tramp-smb.el.gz.

Value

nil

Documentation

List of additional options.

They are added to the tramp-smb-program call via "--option '...'".

For example, if the deprecated SMB1 protocol shall be used, add to this variable "client min protocol=NT1".

This variable was added, or its default value changed, in Emacs 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-smb.el.gz
(defcustom tramp-smb-options nil
  "List of additional options.
They are added to the `tramp-smb-program' call via \"--option '...'\".

For example, if the deprecated SMB1 protocol shall be used, add to
this variable \"client min protocol=NT1\"."
  :group 'tramp
  :type '(repeat string)
  :version "28.1")