Skip to main content
本繁體中文版使用機器翻譯,譯文僅供參考,若與英文版本牴觸,應以英文版本為準。

使用CLI在SMB共用區上設定離線檔案支援

貢獻者

您可以在ONTAP 建立SMB共用時、或隨時修改現有的SMB共用時、指定四個離線檔案設定之一、使用支援的還原CLI來設定離線檔案。手動離線檔案支援為預設設定。

關於這項工作

設定離線檔案支援時、您可以選擇下列四種離線檔案設定之一:

設定 說明

none

不允許Windows用戶端快取此共用區上的任何檔案。

manual

可讓Windows用戶端上的使用者手動選取要快取的檔案。

documents

允許Windows用戶端快取使用者用於離線存取的使用者文件。

programs

允許Windows用戶端快取使用者用於離線存取的程式。即使共用可用、用戶端仍可在離線模式下使用快取的程式檔案。

您只能選擇一個離線檔案設定。如果您修改現有SMB共用區上的離線檔案設定、新的離線檔案設定會取代原始設定。其他現有的SMB共用組態設定和共用內容不會移除或取代。它們會一直有效、直到明確移除或變更為止。

步驟
  1. 執行適當的行動:

    如果您要設定離線檔案於…​ 輸入命令…​

    新的SMB共用區

    `vserver cifs share create -vserver vserver_name -share-name share_name -path path -offline-files {none

    manual

    documents

    programs}`

    現有的SMB共用區

    `vserver cifs share modify -vserver vserver_name -share-name share_name -offline-files {none

    manual

    documents

    programs}`

  2. 確認 SMB 共用組態正確無誤: vserver cifs share show -vserver vserver_name -share-name share_name -instance

範例

下列命令會建立名為「 data1 」的 SMB 共用、並將離線檔案設為 documents

cluster1::> vserver cifs share create -vserver vs1 -share-name data1 -path /data1 -comment "Offline files" -offline-files documents

cluster1::> vserver cifs share show -vserver vs1 -share-name data1 -instance

                          Vserver: vs1
                            Share: data1
         CIFS Server NetBIOS Name: VS1
                             Path: /data1
                 Share Properties: oplocks
                                   browsable
                                   changenotify
               Symlink Properties: enable
          File Mode Creation Mask: -
     Directory Mode Creation Mask: -
                    Share Comment: Offline files
                        Share ACL: Everyone / Full Control
    File Attribute Cache Lifetime: -
                      Volume Name: -
                    Offline Files: documents
    Vscan File-Operations Profile: standard
Maximum Tree Connections on Share: 4294967295
       UNIX Group for File Create: -

下列命令會將離線檔案設定變更為、以修改名為「 data1 」的現有 SMB 共用 manual 以及新增檔案和目錄模式建立遮罩的值:

cluster1::> vserver cifs share modify -vserver vs1 -share-name data1 -offline-files manual -file-umask 644 -dir-umask 777

cluster1::> vserver cifs share show -vserver vs1 -share-name data1 -instance

                          Vserver: vs1
                            Share: data1
         CIFS Server NetBIOS Name: VS1
                             Path: /data1
                 Share Properties: oplocks
                                   browsable
                                   changenotify
               Symlink Properties: enable
          File Mode Creation Mask: 644
     Directory Mode Creation Mask: 777
                    Share Comment: Offline files
                        Share ACL: Everyone / Full Control
    File Attribute Cache Lifetime: -
                      Volume Name: -
                    Offline Files: manual
    Vscan File-Operations Profile: standard
Maximum Tree Connections on Share: 4294967295
       UNIX Group for File Create: -