Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aperi-dev] Self-Contained NAS profile



Hello Alan,

I am implementing the Self-Contained NAS profile on Aperi and I have a question about the ElementSettingData association between ONTAP_FileShare and ONTAP_ExportingFileShareSetting.

During my experiments, most of the ONTAP_ExportingFileShareSetting instances were OK.

However, for one of the CIFS shares, I obtained two instances of  ONTAP_ExportingFileShareSetting having the same InstanceID and different ElementName values:

The first instance had InstanceID = "ONTAP:0084223567:cifs:/vol/vol0" and ElementName = "/vol/vol0" and the second instance had InstanceID = "ONTAP:0084223567:cifs:/vol/vol0" and ElementName = "vol0".

instance of ONTAP_ExportedFileShareSetting {
        uint16 AccessPoints = 2;

         string Caption = "ONTAP_ExportedFileShareSetting";

         uint16 DefaultExecute = 0;

         uint16 DefaultReadWrite = 0;

         uint16 DefaultUserIdSupported = 0;

         string Description = "ONTAP_ExportedFileShareSetting";

         string ElementName = "/vol/vol0";

         uint16 ExecuteSupport = 0;

         uint16 FileSharingProtocol = 2;

         uint16 InitialEnabledState = 8;

         [Key]
        string InstanceID = "ONTAP:0084223567:cifs:/vol/vol0";

         uint16 RootAccess = 0;

         uint16 WritePolicy = 0;

 };

instance of ONTAP_ExportedFileShareSetting {
        uint16 AccessPoints = 2;

         string Caption = "ONTAP_ExportedFileShareSetting";

         uint16 DefaultExecute = 0;

         uint16 DefaultReadWrite = 0;

         uint16 DefaultUserIdSupported = 0;

         string Description = "ONTAP_ExportedFileShareSetting";

         string ElementName = "vol0";

         uint16 ExecuteSupport = 0;

         uint16 FileSharingProtocol = 2;

         uint16 InitialEnabledState = 8;

         [Key]
        string InstanceID = "ONTAP:0084223567:cifs:/vol/vol0";

         uint16 RootAccess = 0;

         uint16 WritePolicy = 0;

 };

Could you please help me to clarify this problem?

Thank you,
Rodica

Back to the top