Azure Flashcards
(13 cards)
What is Microsoft Azure?
Microsoft Azure is a cloud computing platform offering services like virtual machines, storage, and networking on demand.
What is a Virtual Machine (VM) in Azure?
A VM is a virtualized server running an operating system in the Azure cloud.
What does a Network Security Group (NSG) do?
An NSG is a grouping of security rules that controls inbound/outbound network traffic to Azure resources based on predefined parameters.
At what levels can you apply an NSG in Azure?
NSG’s can be applied to entire subnets or individiual VM NIC’s to manage the flow of traffic (ingressing/egressing).
What is Role-Based Access Control (RBAC)?
RBAC is assigning access to specified resources/scopes based on the users role/group. RBAC uses the principle of least privilege for security, which means that whichever group/role that the user has with the MOST RESTRICTIVE rules are the rules that apply/take precedence.
What’s a command in PowerShell (PS) to list all the services currently running?
Get-Service
Lists all currently running services.
What is the Azure Portal?
Azure Portal = website to manage Azure resources and subscriptions from.
What is a subnet?
A subnet is a subdivision of an IP network that groups devices with shared network settings. Networks are subnetted for improved manageability and security.
What is the difference between a public and private IP address?
Public IPs are accessible from the internet; private IPs are used inside a private network. Private IP’s can be translated to Public facing IP’s via Network Address Translation (NAT) to provide internet access to all computers in a subnet.
What are the basic states of an Azure VM or resource?
Azure Resource states: Running, Stopped, and Deallocated.
Why use scripting languages like PowerShell in Azure?
Scrips are used to automate tasks and manage Azure resources efficiently.
What is the first step if a VM won’t start?
Check if the VM is running in the Azure Portal or via CLI and verify subscription status.
Get-AzVM -VMName ‘vm124125’ -Status | FL