ONTAP 9.13

to English version

単一のSMB共有でのBranchCacheの無効化

キャッシュ コンテンツを使用できるようにしていた特定の共有でキャッシュ サービスを提供する必要がなくなった場合は、既存のSMB共有でBranchCachを無効にすることができます。

手順
  1. 次のコマンドを入力します。
    vserver cifs share properties remove -vserver vserver_name -share-name share_name -share-properties branchcache

    BranchCache共有プロパティが削除されます。適用されているその他の共有プロパティは有効なままです。

次のコマンドでは、「data2」という名前の既存のSMB共有でBranchCacheを無効にします。

cluster1::> vserver cifs share show -vserver vs1 -share-name data2

                      Vserver: vs1
                        Share: data2
     CIFS Server NetBIOS Name: VS1
                         Path: /data2
             Share Properties: oplocks
                               browsable
                               changenotify
                               attributecache
                               branchcache
           Symlink Properties: -
      File Mode Creation Mask: -
 Directory Mode Creation Mask: -
                Share Comment: -
                    Share ACL: Everyone / Full Control
File Attribute Cache Lifetime: 10s
                  Volume Name: -
                Offline Files: manual
Vscan File-Operations Profile: standard

cluster1::> vserver cifs share properties remove -vserver vs1 -share-name data2 -share-properties branchcache

cluster1::> vserver cifs share show -vserver vs1 -share-name data2

                      Vserver: vs1
                        Share: data2
     CIFS Server NetBIOS Name: VS1
                         Path: /data2
             Share Properties: oplocks
                               browsable
                               changenotify
                               attributecache
           Symlink Properties: -
      File Mode Creation Mask: -
 Directory Mode Creation Mask: -
                Share Comment: -
                    Share ACL: Everyone / Full Control
File Attribute Cache Lifetime: 10s
                  Volume Name: -
                Offline Files: manual
Vscan File-Operations Profile: standard
Top of Page