Section 36: Cloud computing

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:32 PM on 8/4/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards
What is Cloud Computing?
A model for enabling ubiquitous, convenient on-demand network access to a shared pool of configurable computing resources.
2
New cards
What is the Hybrid Cloud deployment model?
Two or more distinct cloud infrastructures that remain unique entities, bound together by standardized technology.
3
New cards
What is the Private Cloud deployment model?
Cloud infrastructure provisioned for exclusive use by a single organization comprising multiple consumers.
4
New cards
What is the Community Cloud deployment model?
Cloud infrastructure provisioned for exclusive use by a specific group of consumers from organizations with shared concerns.
5
New cards
What is the Public Cloud deployment model?
Cloud infrastructure provisioned for open use by the general public.
6
New cards
What is a Bare Metal server?
A server where the OS runs directly on the hardware, with no hypervisor.
7
New cards
What level of access does the customer get with IaaS?
Operating system level.
8
New cards
With PaaS, who manages the operating system, and who manages the applications/data?
The provider manages the OS; the customer manages applications and data.
9
New cards
With SaaS, who manages everything from the facility up to the data?
The provider.
10
New cards
What does Clustering support?
Combining multiple physical systems into a single virtual system.
11
New cards
How does Private Cloud differ from Public Cloud in terms of who it serves?
It works the same way, but services are provided to internal business units instead of external public enterprises.
12
New cards
What does Virtualization support?
Running multiple virtual systems on a single physical system.
13
New cards
What are the five NIST characteristics that define cloud computing?
On-demand self-service, rapid elasticity, broad network access, resource pooling, and measured service.
14
New cards
What does "rapid elasticity" mean in cloud computing?
Resources can be quickly scaled outward (up) or inward (down) to match demand, often automatically — the consumer only pays for what's currently provisioned.
15
New cards
What does "resource pooling" mean in cloud computing?
Multiple customers share the same underlying physical hardware (multi-tenant), with resources dynamically assigned/reassigned — this lowers costs compared to dedicated hardware per customer.
16
New cards
What does "measured service" mean in cloud computing?
Usage is metered (CPU, storage, bandwidth, etc.) so billing reflects actual consumption — typically an ongoing operational expense rather than upfront capital expense.
17
New cards
Why is running multiple applications directly on the same OS (without virtualization) considered bad practice?
A problem with one application can crash the others, since they all share the same OS instance — virtualization isolates each into its own VM so a failure doesn't cascade.
18
New cards
What's the key architectural difference between a container and a virtual machine?
A VM includes its own full OS. A container does NOT include an OS — only the application's dependencies (executables/libraries) and the app itself, making containers much smaller and faster to provision.
19
New cards
What is Docker, and where does it sit in the virtualization stack?
The most well-known container engine — sits on top of a host OS (typically Linux), with containers running on top of it.
20
New cards
What is VRF, and what does it allow on a single physical router?
Virtual Routing and Forwarding — allows separate, isolated routing tables for different customers/departments on the same physical router, commonly used for MPLS Layer 3 VPNs.
21
New cards
Can customers be given direct administrative access to their own separate VRF, the way they can with virtualized firewall contexts?
No — VRF uses a single shared configuration on the router, so individual customers can't be given isolated admin access the way separate firewall security contexts allow.
22
New cards
In the data center stack (facility → network → storage/compute → hypervisor → OS → applications → data), where is the responsibility boundary for IaaS?
The provider manages everything through the hypervisor. The customer manages everything from the OS upward (OS, applications, data).
23
New cards
Why isn't a "dedicated server" from a Public Cloud provider actually Private Cloud, even though the hardware is dedicated to one customer?
Because the surrounding infrastructure (switches, routers, storage systems) is still shared with other customers — true Private Cloud requires the infrastructure to be exclusively for one organization.
24
New cards
What is "cloud bursting," and what's an example use case?
Scaling out from a Private Cloud into Public Cloud when internal capacity is exceeded — e.g. using Public Cloud as a disaster recovery site for an organization's own Private Cloud data center.
25
New cards
Does adopting cloud computing eliminate the need for in-house IT/network engineering staff?
No — customers (especially with IaaS) still need in-house staff to design the network, and manage everything from the OS level upward; the provider only manages the underlying infrastructure.