Complete the code to specify the primary backup location in the disaster recovery plan.
backup_location = "[1]"
The primary backup location should be a dedicated and secure path like /mnt/backup_primary to ensure data safety.
Complete the command to create a snapshot of the SCADA system configuration for disaster recovery.
scada_backup --create-snapshot [1]Using --full creates a complete snapshot, essential for disaster recovery.
Fix the error in the disaster recovery script to restore the SCADA system from backup.
restore_scada --source [1] --forceThe restore source must point to the latest backup directory, such as /backup/latest.
Fill both blanks to configure the disaster recovery test schedule and notification email.
test_schedule = "[1]" notification_email = "[2]"
Disaster recovery tests are often scheduled weekly and notifications sent to the admin@scada.com email.
Fill all three blanks to define the recovery point objective, recovery time objective, and backup retention period.
rpo = [1] rto = [2] retention_days = [3]
The recovery point objective (RPO) is often 15 minutes, recovery time objective (RTO) 60 minutes, and backup retention period 30 days.