ALB & NLB Interview Questions & Answers
🟢 Basic Q1 What is an Application Load Balancer (ALB)? Basic An Application Load Balancer (ALB) is an AWS managed load balancing service …
🟢 Basic Q1 What is an Application Load Balancer (ALB)? Basic An Application Load Balancer (ALB) is an AWS managed load balancing service …
Waiting for a Service to Become Available #!/usr/bin/env bash wait_for_port() { local host="$1" port="$2" …
What Handles Networking on Linux? Networking is implemented inside the kernel’s network stack; user-space tools (ip, curl, ss) just …
Overview “Can’t resolve hostname” or intermittent DNS failures are common, and the resolution order Linux actually uses …
Overview “Can’t connect to X” can fail at any of several layers — the local network interface, routing, DNS, a firewall …
Interfaces & Addresses ip addr show # all interfaces + their IPs (modern replacement for ifconfig) ip a # short form ip link show # …
LoadBalancer Service in Kubernetes Table of Contents What is a LoadBalancer Service? Why is it Used? How it Works Where it is Used …
NodePort Service in Kubernetes Table of Contents What is NodePort? Why is NodePort Used? How NodePort Works NodePort vs Other Service Types …
Table of Contents What is a ClusterIP Service? Why is ClusterIP Used? How Does ClusterIP Work? Where is ClusterIP Used? ClusterIP vs Other …
The Problem PCI-DSS requires that systems in the Cardholder Data Environment (CDE) be isolated from all other systems. …
The Problem PCI-DSS requires that systems in the Cardholder Data Environment (CDE) be isolated from all other systems. …
Who Is This Path For? This path is for absolute beginners — you’ve never used a Linux terminal before, and that’s completely …
Q1 What are the types of Kubernetes Services and when do you use each? Basic Ans: Pods come and go all the time - they crash, get replaced, …