Networking Language

Networking Language

Vocabulary and communication skills for networking professionals: OSI model, routing, troubleshooting, firewalls, VPNs, wireless networking, DNS, CDNs, load balancing, and network design. 14 practice sets.

Beginner 8 exercises

OSI & TCP/IP Vocabulary

Match protocols to OSI layers, understand encapsulation, and use layer-number shorthand in troubleshooting.

Advanced 8 exercises

Routing Protocols Vocabulary

Static vs. dynamic routing, OSPF, EIGRP, IS-IS, and BGP — autonomous systems, prefixes, and path attributes.

Intermediate 8 exercises

Network Troubleshooting Language

Ping, traceroute, nslookup, dig, netstat, ss, and tcpdump — narrate diagnostics and order troubleshooting steps.

Intermediate 8 exercises

Firewall & ACL Vocabulary

Stateful vs. stateless, implicit deny, drop vs. reject, zones, and reading permit/deny rules against policy.

Intermediate 6 exercises

VPN & Tunneling Vocabulary

Site-to-site vs. remote access, split vs. full tunnel, IPsec, OpenVPN, WireGuard, and GRE.

Beginner 8 exercises

Wireless Networking

Wi-Fi 4/5/6/6E standards, frequency bands, channels, SSID/BSSID, WPA2/WPA3, RADIUS, and 802.1X.

Advanced 6 exercises

Network Design Communication

Topology, redundancy, failover, HA, VLANs, segmentation, and DMZ — presenting and justifying design decisions.

Beginner 5 exercises

DNS Vocabulary

Record types, TTL and propagation, authoritative vs. recursive resolvers, CNAME, SRV, and DNSSEC.

Intermediate 5 exercises

Network Protocols Vocabulary

TCP vs. UDP trade-offs, HTTP/2 vs. HTTP/3 (QUIC), TLS cipher suites, WebSockets, and gRPC over HTTP/2.

Intermediate 5 exercises

TLS/SSL Troubleshooting Vocabulary

Diagnosing handshake failures, broken certificate chains, expiry, SNI, and cipher mismatches.

Intermediate 5 exercises

Load Balancer Vocabulary

Layer 4 vs. Layer 7 balancing, health checks, sticky sessions, least-connections, and weighted target groups.

Beginner 5 exercises

CDN Configuration Vocabulary

Edge nodes, origin servers, TTL, cache purging, and the Cache-Control header for content delivery networks.

Intermediate 5 exercises

Network Security Vocabulary

WAF, security groups, NACLs, CIDR blocks, and DDoS protection in cloud network security.

Intermediate 5 exercises

Network Latency Debugging Vocabulary

Round-trip time, jitter, packet loss, traceroute hops, and bandwidth vs. latency when diagnosing slow networks.

Quick reference

OSI / TCP-IP layers

  • Physical → Data Link → Network → Transport → Session → Presentation → Application
  • TCP/IP condenses this to 4 layers: Network Access, Internet, Transport, Application
  • "Encapsulation" — each layer wraps the layer above with its own header
  • "It's a Layer 3 issue" — shorthand for routing/IP-addressing problems

Troubleshooting tools

  • ping — basic ICMP reachability test
  • traceroute / tracert — path and hop-by-hop latency
  • dig / nslookup — DNS resolution checks
  • ss / netstat — active connections and listening ports
  • tcpdump / Wireshark — raw packet capture and inspection

Security & design

  • Stateful firewall: tracks connection state, auto-allows return traffic
  • Implicit deny: unmatched traffic is dropped by default
  • DMZ: isolates internet-facing services from the internal network
  • Site-to-site VPN: gateway-to-gateway encrypted tunnel between networks
  • HA / failover: a standby component takes over automatically on failure

Frequently Asked Questions

What's the difference between a Layer 2 and Layer 3 switch in networking exercises?

Layer 2 switches operate at the data link layer (OSI model) forwarding traffic based on MAC addresses, while Layer 3 switches operate at the network layer and forward traffic using IP addresses. This means Layer 3 switches can perform routing between different networks, unlike Layer 2 switches which are limited to switching within a single broadcast domain.

I'm learning about VPNs; what does 'IPsec' stand for in the context of VPN protocols?

IPsec stands for Internet Protocol Security. It's a suite of protocols used to secure IP communications by providing encryption, authentication, and integrity checks – essentially creating a secure tunnel over an insecure network like the internet.

In routing exercises, what is 'BGP' and why is it important?

BGP stands for Border Gateway Protocol. It's the standard routing protocol used between autonomous systems (AS) on the Internet to exchange routing information and determine the best paths for data packets to travel across different networks – crucial for global internet connectivity.