Home / NCDA Study / HA, QoS & Security

HA, QoS & Security

Keeping ONTAP available (takeover/giveback), predictable (QoS), and locked down (encryption, RBAC) — plus how to watch all of it.

HA pairs, QoS, encryption and RBAC

High availability: takeover & giveback

# HA status and control
storage failover show
storage failover takeover -ofnode node2
storage failover giveback -ofnode node2
# Volume migration (NDO)
volume move start -vserver vs1 -volume vol1 -destination-aggregate aggr2
MetroCluster vs HA HA pairs protect against node failure (same site). MetroCluster protects against site failure (switchover/switchback). Same concepts (mirrored NVRAM, takeover), different scope.

Storage QoS

# Fixed QoS
qos policy-group create -policy-group pg_critical -vserver vs1 -max-throughput 10000IOPS,500MBps
volume modify -vserver vs1 -volume vol_crit -qos-policy-group pg_critical
# Adaptive QoS
qos adaptive-policy-group create -name apg_gold -vserver vs1 -expected-iops-per-tb 500 -peak-iops-per-tb 1000
volume modify -vserver vs1 -volume vol_gold -qos-adaptive-policy-group apg_gold
# Measure
qos statistics volume show -vserver vs1 -volume vol_crit -interval 5

Security

Encryption

# Encryption status
security key-manager onboard show
volume show -fields encryption,encrypt
storage aggregate show -fields encryption-type

Access control & hardening

# RBAC examples
security login create -vserver vs1 -user-or-group-name ops -application ssh -authmethod password
security login show
security role show -vserver vs1

Monitoring & events

# Events & health
event log show -severity ERROR -time ">now-24h"
system health alert show
job show -type volume-move
autosupport show

Exam traps to know

Next: Practice questions →