Questions tagged [netapp]

NetApp are a company primarily known for the NetApp Filer network attached storage appliances.

NetApp filers are a popular model of network attached storage (NAS) device. NetApp also sell software products catering to the storage reporting and monitoring market niche.

A NetApp filer is a standalone appliance which runs an operating system called ONTAP, and has it's own specialist command set, and is loosely based on BSD. Their primary service offering are for network storage, via CIFS and NFS.

They've also diversified into direct attached storage via iSCSI and FCoE.

Filers are typically configured with a custom variant of RAID-4, that NetApp call RAID-DP. Essentially RAID-4 with a second parity drive.

1 or more RAID groups are turned into an aggregate - a pool of storage.

Volume are created within an aggregate, and may be thin provisioned or deduplicated.*

Qtrees are created within volumes a top level - they're quotaed directory structures. (Enforcing a quota is optional - qtrees merely enable the quota tracking mechanism).

Filers deduplicate at volume level, because this allows volumes to be treated as standalone containers for the purposes of migration around a cluster.

104 questions
0
votes
2 answers

NetApp 7-Mode simulator CIFS share creation

What are the different ways to create CIFS share on NetApp 7-mode simulator? I created share using command line argument and NetApp onCommand System Manager. I want to know is there any other way to do the same things?
0
votes
0 answers

How to call a variable in a command

I'm trying to write a script to accept a list of user names and assign each one a quota on a netapp storage box invoking a netapp command within a PowerShell script as per below: $names = @("AD\test1", "AD\test2") foreach ($user in $names) { …
frodo
  • 1,053
  • 5
  • 17
  • 33
0
votes
1 answer

NetApp CP types explanation

My question is about the different CP types triggers on a NetApp filer. I have looked a lot and found good description for most of them but some explanations are a bit general. Here is the list of the CP types (as shown at sysstat command) along…
Tomer Schweid
  • 325
  • 2
  • 5
  • 18
0
votes
0 answers

NetApp SNMP monitoring

I'm writing a script to pull data from a NetApp filter, I'm trying to get networking data but looking at the MIB file I can see metrics like ifHighOutDiscards, ifLowOutDiscards and if64OutOctets. What do these numbers mean? Do I need to convert…
0
votes
1 answer

Does anyone know how to automate WAFL reallocate on a Netapp Filer 3240 / 3220

We have 4 x NetApp filers, each with around 50x VOLs. We've been experience performance issues & tracked it down to how fragmented the data is. We've run some measures (all coming back over 7+) and have been gradually manually running the WAFL…
0
votes
1 answer

Windows NFS user mapping issue when working with NetApp clustered ONTAP

I have an issue with user mapping while using NFS export from NetApp and trying to mount it on a windows using the NFS client feature. I have a qtree exported from the NetApp using NFS and I installed the NFS client on Windows (via server manager -…
0
votes
1 answer

How to get NTFS on NETAPP

Does anyone know how to list NTFS permissions on all shares in a NETAPP vfiler using C#? I tried to use NETAPP API but only get the share permissions, can't find a way to get the NTFS ones. EDIT Thanks Sobrique, here's the C# syntax: var api…
kooshka
  • 871
  • 1
  • 9
  • 19
0
votes
1 answer

jcifs share enumartion timesout

I've been using jcifs 1.3.17 for quite some time, and recently had some troubles enumerating shares from one specific NetApp machine. the NetApp is in cluster mode using smbclient from same source to same target finishes successfully I can post…
Nati
  • 1,034
  • 5
  • 19
  • 46
0
votes
0 answers

python hex to ascii using sprintf

I'm running the following python program to read the content of a file, but the outcome is presented in HEX as follow: Python Script: import sys sys.path.append("/lib/python/NetApp") from NaServer import * s = NaServer("
Oscar
  • 33
  • 4
0
votes
1 answer

Regarding permissions of CIFS shares.

We recently changed the domain of our filer due to this few users have lost permissions to their CIFS shares. Is there a way to get the fsecurity show output from some config file, so that i can proactively check for the changes before and after…
0
votes
3 answers

bash - parsing file and getting variables

I've searched and searched on here for an answer, and I think the combination of being a noob at bash, not knowing the right way to do this, and not searching for the right keywords has meant I can't quite get over the last hurdle. I am looking to…
beginer
  • 1
  • 2
0
votes
1 answer

How to send specific answers to serial connection regarding output?

I have a serial console session and I need to answer specific questions from the device. If I enter the command "setup" the device will start a setup wizard, which will ask me some questions. I want to automate this setup as much as possible to…
checker284
  • 1,286
  • 3
  • 14
  • 29
0
votes
1 answer

Mount Netapp NFS share permanently on RHEL 6.4

I am trying to mount a volume on a RHEL 6.4 virtual machine permanently. My fstab entry is as: 172.17.4.228:/bp_nfs_test1 /mnt1 nfs rsize=8192,wsize=8192,intr And I mounted the volume as: mount 172.17.4.228:/bp_nfs_test1 …
Pradeep
  • 91
  • 1
  • 4
  • 15
0
votes
1 answer

How to get system information using Netapp ONTAP8.1 API and java?

I am novice to NETAPP API. I am using Netapp ONTAP API 8.1 and Java. I want to get system information such as systemname,serial number, vendorID,Total processors etc. I am able to get system version using following code try { ApiRunner apirunner =…
user3322141
  • 158
  • 6
  • 23
0
votes
1 answer

how to get performance of CPU and Memory using Netapp API and Java?

I want to get performance of storage system using Netapp API and Java. I am able to fetch volumes, Aggregates, Disks info. Now I want to get memory and CPU utilization of a system. Which class should I use in order to get information related to CPU…
Vishwas
  • 6,967
  • 5
  • 42
  • 69