Amazon Ad

Featured Post

Showing posts with label classic. Show all posts
Showing posts with label classic. Show all posts

Sunday, January 06, 2019

LUN Statistics in ONTAP Classic


toaster> lun stats -z
toaster> sysstat -s -i 1
 CPU     NFS    CIFS   iSCSI     Net   kB/s    Disk   kB/s   iSCSI   kB/s  Cache
                                  in    out    read  write      in    out    age
  2%       0       0       0       0      0       0      0       0      0   >60
  2%       0       0       0       0      0       0      0       0      0   >60
  2%       0       0       4      17      1       0      0      16      0   >60
  2%       0       0       0       1      0       0      0       0      0   >60
  2%       0       0       0       0      0       0      0       0      0   >60
  2%       0       0       0       0      0       0      0       0      0   >60
  4%       0       0       1       4      0       0    818       4      0   >60
  4%       0       0       0       0      0      12     32       0      0   >60
  2%       0       0       0       0      0       0      0       0      0   >60
  5%       0       0       7       6   1856    1747      0       0   1788   >60
  3%       0       0      14    1901     38       0      0    1826      0     9
  2%       0       0       2       9      1       0      0       8      0     9
  2%       0       0       0       1      0       0      0       0      0     9
  2%       0       0       0       0      0       0      0       0      0     9
  2%       0       0       0       0      0       0      0       0      0     9
  2%       0       0       0       1      0       0      0       0      0     9
  2%       0       0       1       5      0       0      0       4      0     9
  5%       0       0       0       0      0       0   1859       0      0     9
  4%       0       0       0       0      0       0   2290       0      0     9
--
Summary Statistics (   19 samples  1 secs/sample)
 CPU     NFS    CIFS   iSCSI     Net   kB/s    Disk   kB/s   iSCSI   kB/s  Cache
                                  in    out    read  write      in    out    age
Min
  2%       0       0       0       0      0       0      0       0      0     9
Avg
  2%       0       0       1     102     99      92    263      97     94   >60
Max
  5%       0       0      14    1901   1856    1747   2290    1826   1788   >60
toaster> lun stats
    /vol/vol0/lun1  (0 hours, 0 minutes, 30 seconds)
        Read (kbytes)   Write (kbytes)  Read Ops  Write Ops
        1754            1834            7         26
toaster>


Wednesday, July 05, 2006

Identifying incoming traffic using Data ONTAP Classic pktt

The task: Identifying thru which interface/s incoming traffic is arriving to the filer?

There are different methods to find out such information:
1. Send traffic from a particular client, and use the following command:
   pktt start all -b 2m -d / -s 5m -i 
   

If this client is sending traffic, you will see messages stating packets seen. You can also check if packets have been observed from this client using:
   pktt status -v
   

2. Capture a network trace file and observe. Capture using the same filer utility as described above. The files will end up in the filer's /, and only administrator/root can read the files:
To start the trace on all interfaces:
   pktt start all -b 2m -d / -s 5m
   

To stop the trace:
   pktt stop all
   


Dr. Toaster Recommends:
Use Ethereal to decode the network trace file. Ethereal decodes all the common file and block protocols - NFS, CIFS, iSCSI, as well as management protocols such as RSH, SNMP, Telnet.