Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.17 KB

Module_10_1.md

File metadata and controls

57 lines (36 loc) · 1.17 KB

MODULE 10 - DYNAMIC NAS PROTECTION

LESSON 1 - REVIEW NAS PROXY AND ASSETS

Viewing NAS Assets and Asset Sources

View explicit Powerstore NAS system with Name isilon.demo.local:

Get-PPDMAssetSource -Type POWERSCALEMANAGEMENTSERVER -filter 'name eq "isilon.demo.local"'

Alt text

View all NAS Assets

Get-PPDMassets -type NAS_SHARE | ft name, id, status, protectionStatus

Alt text

View NAS Proxies

The Provies are managed via the embedded Protection Engine, the VPE First, we get the VPE with its ID:

$VPE=Get-PPDMprotection_engines
$VPE

Alt text

Next, we get the NAS Protection Engine Proxies with:

$Proxies=Get-PPDMprotectionEngineProxies -VPE $VPE.id -ProtectionTypes NAS

View the Status of the Proxies(s)

$Proxies.Status

Alt text

View the Configuration of the Proxies(s)

$Proxies.Config

Alt text

<<Module 9 Lesson 1 This Concludes Module 10 Lesson 1 Module 10 Lesson 1 >>