0
0
SCADA systemsdevops~10 mins

System backup strategies in SCADA systems - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a full backup of the SCADA system configuration.

SCADA systems
backup_tool --mode=[1] --source /scada/config --destination /backup/full
Drag options to blanks, or click blank then click option'
Aincremental
Bsnapshot
Cdifferential
Dfull
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing incremental or differential instead of full for a complete backup.
2fill in blank
medium

Complete the command to perform an incremental backup of the SCADA logs.

SCADA systems
backup_tool --mode=[1] --source /scada/logs --destination /backup/incremental
Drag options to blanks, or click blank then click option'
Aincremental
Bdifferential
Csnapshot
Dfull
Attempts:
3 left
💡 Hint
Common Mistakes
Using full mode when incremental is needed for efficiency.
3fill in blank
hard

Fix the error in the backup command to restore the SCADA system from a differential backup.

SCADA systems
restore_tool --backup-type=[1] --source /backup/diff --target /scada
Drag options to blanks, or click blank then click option'
Aincremental
Bfull
Cdifferential
Dsnapshot
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing incremental and differential backup types during restore.
4fill in blank
hard

Fill both blanks to schedule a daily full backup and a weekly differential backup.

SCADA systems
schedule_backup --daily=[1] --weekly=[2] --source /scada/data --destination /backup
Drag options to blanks, or click blank then click option'
Afull
Bincremental
Cdifferential
Dsnapshot
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing incremental and differential in scheduling causing restore complexity.
5fill in blank
hard

Fill all three blanks to create a backup script that uses snapshot backups, compresses data, and verifies integrity.

SCADA systems
backup_tool --mode=[1] --compress=[2] --verify=[3] --source /scada/system --destination /backup/snapshots
Drag options to blanks, or click blank then click option'
Afull
Btrue
Cfalse
Dsnapshot
Attempts:
3 left
💡 Hint
Common Mistakes
Skipping verification or compression, risking backup failures or large sizes.