Posts with #networking

Linux

Sun, July 6, 2025

10 min read

DNS Demystified 7: Third-Party DNS Providers and Nameserver Management

Running your own BIND server gives you full control. Managed DNS gives you anycast, DDoS protection, and an API. Here is how to choose and how to switch.

Linux

Sat, July 5, 2025

9 min read

DNS Demystified 6: Building Your Own DNS Server for rootlog.in

Running your own authoritative DNS server gives you full control. Here is how to set up BIND9 for rootlog.in, create zone files, and test the setup.

Linux

Fri, July 4, 2025

8 min read

DNS Demystified 5: TTL, Propagation, /etc/hosts, and Linux Resolution Order

Almost every 'DNS propagation delay' is actually a TTL issue. Here is how caching really works, plus /etc/hosts tricks and nsswitch.conf.

Linux

Thu, July 3, 2025

8 min read

DNS Demystified 4: Troubleshooting DNS Issues

Most network problems are DNS problems. Here is a repeatable methodology for finding the root cause of any DNS issue.

Linux

Wed, July 2, 2025

7 min read

DNS Demystified 3: Zones, Records, and How to Query Them

A DNS zone is a database of records. Knowing how to read and query them with dig, host, and nslookup is a core sysadmin skill.

Linux

Tue, July 1, 2025

6 min read

DNS Demystified 2: Recursive and Non-Recursive Resolvers

Every DNS query starts with a resolver. Understanding recursive vs iterative resolution is essential for troubleshooting and performance tuning.

Linux

Mon, June 30, 2025

7 min read

DNS Demystified 1: Root Servers and the Lookup Chain

DNS is the phonebook of the internet. Every lookup starts at the root servers and walks down the hierarchy — this is exactly how it works.

Networking

Wed, June 25, 2025

6 min read

CCNA Lab 14: Network Health Checks, BKMs, and Command Reference

Preventive network health checks catch problems before they become outages. This is the daily/weekly/monthly maintenance routine every network engineer needs.

Networking

Tue, June 24, 2025

5 min read

CCNA Lab 13: Configuration Management and Automated Backups

A config without a backup is a config you have already lost. The only good configuration backup is one you can restore blindfolded.

Networking

Mon, June 23, 2025

6 min read

CCNA Lab 12: DHCP Snooping, DAI, and IP Source Guard

A rogue DHCP server or a spoofed ARP reply can take down an entire subnet. DHCP Snooping, DAI, and IP Source Guard are the three security layers that prevent this.

Networking

Sun, June 22, 2025

5 min read

CCNA Lab 11: EtherChannel and Link Aggregation

Bonding multiple physical links into a single logical channel gives you more bandwidth and redundancy. But misconfigured EtherChannel is a guaranteed loop.

Networking

Sat, June 21, 2025

5 min read

CCNA Lab 10: Network Discovery — CDP, LLDP, and Layer 2 Topology Mapping

A network without discovery protocols is a network you can not troubleshoot blind. CDP and LLDP give you a real-time wiring diagram from any switch.

Networking

Fri, June 20, 2025

6 min read

CCNA Lab 9: Load Troubleshooting and Switch Performance

A slow switch is often worse than a dead one. Knowing how to isolate CPU hogs, memory leaks, and error counters is what separates junior engineers from senior ones.

Networking

Thu, June 19, 2025

5 min read

CCNA Lab 8: Common Switch Misconfigurations and Pitfalls

After a decade of fixing broken networks, certain patterns emerge. These are the most common switch misconfigurations, the outages they cause, and the commands to prevent them.

Networking

Wed, June 18, 2025

4 min read

CCNA Lab 7: Loop Troubleshooting and STP Deep Dive

A single loop can take down an entire network in seconds. Knowing how STP works and how to troubleshoot loop-related issues is the most critical skill for any L2 engineer.

Networking

Tue, June 17, 2025

3 min read

CCNA Lab 6: Switch Replacement Procedure

A switch fails. The replacement arrives. Every minute of downtime costs money. A documented replacement procedure ensures you can swap a switch blindfolded.

Networking

Mon, June 16, 2025

3 min read

CCNA Lab 5: ACLs on Layer 2 Switches

ACLs on switches filter traffic at Layer 2 and Layer 3. Port ACLs restrict host access, VLAN ACLs filter inter-VLAN traffic, and router ACLs secure Layer 3 boundaries.

Networking

Sun, June 15, 2025

3 min read

CCNA Lab 4: Switch Configuration Backup to TFTP Server

The only good config backup is one you can restore blindly. Automated TFTP backups ensure you never lose a switch configuration.

Networking

Sat, June 14, 2025

3 min read

CCNA Lab 3: TACACS+ and RADIUS Authentication on Switches

Managing local passwords on every switch does not scale. AAA with TACACS+ or RADIUS centralizes authentication, authorization, and accounting for all network devices.

Networking

Fri, June 13, 2025

3 min read

CCNA Lab 2: VLANs, Trunking, and Layer 2 Fundamentals

VLANs segment broadcast domains. Trunks carry multiple VLANs between switches. Misconfiguring either causes connectivity issues that are notoriously hard to debug.

Networking

Thu, June 12, 2025

2 min read

CCNA Lab 1: Switch Initial Configuration and Hostnames

Every switch starts as a blank slate. Setting the hostname, securing access, and enabling SSH are the first things you do before any production config.

Linux

Wed, June 11, 2025

3 min read

tcpdump — Network Packet Analysis for Sysadmins

tcpdump is the standard packet analyzer on Linux. Every senior admin uses it to capture raw network traffic and diagnose connectivity issues at the packet level.

Linux

Tue, June 10, 2025

3 min read

lsof and ss — Open Files and Sockets Deep Dive

Everything on Linux is a file. lsof lists open files and the processes that own them. ss replaces netstat with faster, more detailed socket introspection.

Networking

Sun, June 1, 2025

1 min read

Understanding TCP/IP Fundamentals

TCP/IP is the backbone of modern networking. Understanding how it works is essential for anyone managing servers or networks.