Given a scenario, implement cybersecurity resilience Flashcards
Redundancy
Geographic dispersal
Disk
Network
Power
Overprovisioning resources at the component, host, and/or site level so that there is failover to a working instance in the event of a problem.
Geographic dispersal
Resiliency mechanism where processing and data storage resources are replicated between physically distant sites.
Disk
Redundant array of inexpensive disks (RAID) levels
Multipath
Disk and storage resources are critically dependent on redundancy. While backup provides integrity for when a disk fails, to restore from backup would require installing a new storage unit, restoring the data, and testing the system configuration. Disk redundancy ensures that a server can continue to operate if one, or possibly more, storage devices fail.
Redundant array of inexpensive disks (RAID) levels
Multipath
Specifications that support redundancy and fault tolerance for different configurations of multiple-device storage systems.
Network
Load balancers
Network interface card (NIC) teaming
Networking is another critical resource where a single point of failure could cause significant service disruption.
Load balancers
NIC teaming provides load balancing at the adapter level. Load balancing and clustering can also be provisioned at a service level:
A load balancing switch distributes workloads between available servers.
A load balancing cluster enables multiple redundant servers to share data and session information to maintain a consistent service if there is failover from one server to another.
Network interface card (NIC) teaming
Network interface card (NIC) teaming, or adapter teaming, means that the server is installed with multiple NICs, or NICs with multiple ports, or both. Each port is connected to separate network cabling. During normal operation, this can provide a high-bandwidth link. For example, four 1 GB ports gives an overall bandwidth of 4 GB. If there is a problem with one cable, or one NIC, the network connection will continue to work, though at just 3 GB.
Power
Uninterruptible power supply (UPS)
Generator
Dual supply
Managed power distribution units (PDUs)
All types of computer systems require a stable power supply to operate. Electrical events, such as voltage spikes or surges, can crash computers and network appliances, while loss of power from brownouts or blackouts will cause equipment to fail. Power management means deploying systems to ensure that equipment is protected against these events and that network operations can either continue uninterrupted or be recovered quickly.
Replication
Storage area network
VM
Synchronous replication is designed to write data to all replicas simultaneously. Therefore, all replicas should always have the same data all of the time. Asynchronous replication writes data to the primary storage first, and then copies data to the replicas at scheduled intervals.
Asynchronous replication isn’t a good choice for a solution that requires data in multiple locations to be consistent, such as data from product inventory lists accessed in different regions. Many geo-redundant replication services rely on asynchronous replication due to the distances between data centers in multiple regions. In some cases, business solutions work around the limitations of asynchronous replication. For example, an online retailer may choose only to show inventory from their local regional warehouse.
On-premises vs. cloud
High availability through redundancy and replication is resource-intensive, especially when configuring multiple hot or warm sites. For on-premises sites, provisioning the storage devices and high-bandwidth, low-latency WAN links required between two geographically dispersed hot sites could incur unaffordable costs. This cost is one of the big drivers of cloud services, where local and geographic redundancy are built into the system, if you trust the CSP to operate the cloud effectively. For example, in the cloud, geo-redundancy replicates data or services between data centers physically located in two different regions. Disasters that occur at the regional level, like earthquakes, hurricanes, or floods, should not impact availability across multiple zones.
Backup types
Full Incremental Snapshot Differential Tape Disk Copy Network-attached storage (NAS) Storage area network Cloud Image Online vs. offline Offsite storage
Full
All selected data regardless of when it was previously backed up
Incremental
New files, as well as files modified since the last backup
Snapshot
Snapshots are a means of getting around the problem of open files. If the data that you’re considering backing up is part of a database, such as SQL data or an Exchange messaging system, then the data is probably being used all the time. Often copy-based mechanisms will be unable to back up open files. Short of closing the files, and so too the database, a copy-based system will not work. A snapshot is a point-in-time copy of data maintained by the file system. A backup program can use the snapshot rather than the live data to perform the backup.
Differential
All new and modified files since the last full backup