Unsolved
This post is more than 5 years old
1 Rookie
•
32 Posts
0
2243
November 7th, 2012 11:00
List storage groups which are not associated with FAST
which command I can use to get a list of storeg groups in VMAX which are not associated with any FAST policy?
No Events found!
Sadish1
11 Posts
0
November 7th, 2012 12:00
Hello Cable ,
symsg -sid *** list will give you all the storage groups , but however you have flags from which you can identify which has FAST policy associated and which does not .
Regards
Sadish S
dynamox
9 Legend
•
20.4K Posts
0
November 7th, 2012 16:00
probably easier to list storage groups that are associated with polices and then substruct from a list of all storage groups.
symfast -sid 1234 list -association
hernster
1 Rookie
•
63 Posts
1
April 8th, 2013 11:00
Since I do not care about storage groups that are NOT masked (very few if any, and if in production they are should be masked anyway), this is the command I use:
sudo symsg list | grep "\.X\."
This gives me a list of masked SG's that are presently not associated to any FAST VP (in our case) policies.
emckid
1 Message
0
April 1st, 2014 20:00
yes that works thanks.
for windows # symsg list -sid 1234 | findstr "\.X\." | more