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.
OSI & TCP/IP Vocabulary
Match protocols to OSI layers, understand encapsulation, and use layer-number shorthand in troubleshooting.
Routing Protocols Vocabulary
Static vs. dynamic routing, OSPF, EIGRP, IS-IS, and BGP — autonomous systems, prefixes, and path attributes.
Network Troubleshooting Language
Ping, traceroute, nslookup, dig, netstat, ss, and tcpdump — narrate diagnostics and order troubleshooting steps.
Firewall & ACL Vocabulary
Stateful vs. stateless, implicit deny, drop vs. reject, zones, and reading permit/deny rules against policy.
VPN & Tunneling Vocabulary
Site-to-site vs. remote access, split vs. full tunnel, IPsec, OpenVPN, WireGuard, and GRE.
Wireless Networking
Wi-Fi 4/5/6/6E standards, frequency bands, channels, SSID/BSSID, WPA2/WPA3, RADIUS, and 802.1X.
Network Design Communication
Topology, redundancy, failover, HA, VLANs, segmentation, and DMZ — presenting and justifying design decisions.
DNS Vocabulary
Record types, TTL and propagation, authoritative vs. recursive resolvers, CNAME, SRV, and DNSSEC.
Network Protocols Vocabulary
TCP vs. UDP trade-offs, HTTP/2 vs. HTTP/3 (QUIC), TLS cipher suites, WebSockets, and gRPC over HTTP/2.
TLS/SSL Troubleshooting Vocabulary
Diagnosing handshake failures, broken certificate chains, expiry, SNI, and cipher mismatches.
Load Balancer Vocabulary
Layer 4 vs. Layer 7 balancing, health checks, sticky sessions, least-connections, and weighted target groups.
CDN Configuration Vocabulary
Edge nodes, origin servers, TTL, cache purging, and the Cache-Control header for content delivery networks.
Network Security Vocabulary
WAF, security groups, NACLs, CIDR blocks, and DDoS protection in cloud network security.
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 testtraceroute/tracert— path and hop-by-hop latencydig/nslookup— DNS resolution checksss/netstat— active connections and listening portstcpdump/ 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.
What is a 'VLAN' and how does it relate to firewall rules?
A VLAN, or Virtual Local Area Network, logically segments a physical network into smaller broadcast domains. Firewall rules can then be applied at the VLAN level to control traffic flow between these segments, enhancing security and network management.
Explain 'DHCP' in networking exercises – what does it do?
DHCP stands for Dynamic Host Configuration Protocol. It automatically assigns IP addresses, subnet masks, default gateways, and DNS server information to devices on a network, simplifying network administration and preventing IP address conflicts.
I'm practicing with wireless networks; what is '802.11n' and why was it significant?
802.11n is a Wi-Fi standard that introduced features like MIMO (Multiple Input, Multiple Output) technology, enabling faster data rates and improved network capacity compared to earlier standards such as 802.11g and 802.11a. It represented a major step forward in wireless performance.
What's the purpose of 'NAT' (Network Address Translation) and how does it affect routing?
NAT, or Network Address Translation, allows multiple devices on a private network to share a single public IP address. This is achieved by translating internal IP addresses to the external one when communicating with the internet, impacting routing as packets are associated with the translated address.
I'm studying firewalls; what's a 'stateful firewall', and how is it different from a stateless one?
A stateful firewall tracks the state of network connections, examining both the source and destination IP addresses and ports. This allows it to make more informed decisions about allowing or blocking traffic compared to a stateless firewall, which only examines packet headers.
Can you explain 'MTU' (Maximum Transmission Unit) in the context of VPNs and routing?
The MTU defines the largest size of a data packet that can be transmitted over a network. When using VPNs or traversing different networks with varying MTU sizes, fragmentation occurs, potentially impacting performance – understanding MTU is vital for efficient routing.
What are 'SSIDs' in wireless networking exercises and what role do they play?
SSID stands for Service Set Identifier. It's the name broadcast by a wireless network, allowing devices to identify and connect to that particular Wi-Fi network. The SSID is crucial for device discovery and authentication.