Complete IPv4 Syllabus: A Modern Guide

Section 1: What Is an IP Address?

Goal: Understand what IPs are and why they matter.

1. What’s an IP Address?

Think of an IP address as a house address for devices (PCs, phones, routers). It tells them where to send or receive data.

IPv4 uses 32 bits, written as 4 numbers (e.g., 192.168.1.1). Each number (0-255) is an octet (8 bits).

Example: Your laptop might be 192.168.1.10, talking to your router at 192.168.1.1.

2. Why Do We Need It?

Devices use IPs to find each other, like how you need a friend’s address to send a letter.

Problem: IPv4 has only 4.3 billion addresses (2³²), and many are reserved, so we’re running low (hello, IPv6!).

Formula: Total IPs = 2³² = 4,294,967,296

FAQs

Why 4 numbers?

32 bits split into 4 octets (8 bits each) make it readable (2⁸ = 256 per octet).

Can IPs change?

Yes, manually or automatically via DHCP (more on that later).

What’s 0.0.0.0?

It means “any IP” or “unknown”—routers use it as a default route.

Section 2: IP Classes (Public and Private)

Goal: Learn how IPs are grouped and the difference between public and private.

1. What Are IP Classes?

IPv4 divides IPs into 5 classes (A, B, C, D, E) based on the first octet. Each has a default size for networks and hosts (devices).

ClassRangeDefault MaskNetwork BitsHost BitsTotal HostsUsable HostsUse Case
A1.0.0.0 - 126.0.0.0/8 (255.0.0.0)82416,777,21616,777,214Big networks
B128.0.0.0 - 191.255.0.0/16 (255.255.0.0)161665,53665,534Medium networks
C192.0.0.0 - 223.255.255.0/24 (255.255.255.0)248256254Small networks
D224.0.0.0 - 239.255.255.255-----Multicast
E240.0.0.0 - 255.255.255.255-----Experimental

Note: 127.0.0.0/8 is loopback (e.g., 127.0.0.1 tests your device).

2. Public vs. Private IPs

Public: Unique worldwide, routable on the internet (e.g., 8.8.8.8 - Google DNS).

Private: Local only, reused in different networks (e.g., 192.168.1.1 at your home and mine).

ClassRangeDefault MaskMin IPMax IPUsable HostsUse Case
A10.0.0.0 - 10.255.255.255/810.0.0.110.255.255.25416,777,214Big companies
B172.16.0.0 - 172.31.255.255/16172.16.0.1172.31.255.25465,534Medium networks
C192.168.0.0 - 192.168.255.255/24192.168.0.1192.168.255.254254Home WiFi

Explanation:

  • Class A: /8 = 24 host bits → 2²⁴ - 2 = 16,777,214. Min = 10.0.0.1, Max = 10.255.255.254.
  • Class B: /16 = 16 host bits → 2¹⁶ - 2 = 65,534. Min = 172.16.0.1, Max = 172.31.255.254.
  • Class C: /24 = 8 host bits → 2⁸ - 2 = 254. Min = 192.168.0.1, Max = 192.168.255.254 (each /24 ends at .254).

Formula: Usable Hosts = 2^(32 - Mask) - 2

FAQs

Why subtract 2?

Network address (e.g., 192.168.0.0) and broadcast (e.g., 192.168.0.255) can’t be used for devices.

Why private IPs?

Saves public IPs—millions of homes use 192.168.1.x without clashing.

Can I mix public and private?

Yes, via NAT (more later).

Section 3: Subnetting and CIDR (Breaking It Down)

Goal: Learn how to split or combine networks, step-by-step.

1. What’s Subnetting?

It’s like chopping a big cake into smaller slices. You take one network (e.g., 192.168.0.0/24) and make smaller ones (e.g., /26).

Why? Organize devices (e.g., IT vs. HR), improve security, reduce traffic.

2. Subnetting Step-by-Step

Start: 192.168.0.0/24 (254 usable hosts).

Goal: 4 subnets.

  1. How Many Subnets? Need 4 → 2² = 4, so borrow 2 bits.
  2. New Mask: /24 + 2 = /26.
  3. Host Bits Left: 32 - 26 = 6.
  4. Total IPs per Subnet: 2⁶ = 64.
  5. Usable Hosts: 64 - 2 = 62.
  6. Ranges:
SubnetRangeUsable IPs
0192.168.0.0 - 192.168.0.63.1 - .62
1192.168.0.64 - 192.168.0.127.65 - .126
2192.168.0.128 - 192.168.0.191.129 - .190
3192.168.0.192 - 192.168.0.255.193 - .254

Subnet 0 Explained: Old systems skipped it (confused with network address), but it’s usable now.

3. CIDR (Flexible Sizing)

CIDR lets you pick any mask (e.g., /23) instead of fixed /8, /16, /24.

Example: 192.168.0.0/23 = 510 hosts (2⁹ - 2).

4. Supernetting (e.g., 192.168.0.0/21 to /16)

Combines smaller networks into a big one.

  • /21: Mask: 255.255.248.0, Hosts: 2¹¹ - 2 = 2046, Range: 192.168.0.0 - 192.168.7.255 (usable: .0.1 - .7.254). Use: 1000 devices (school).
  • /16: Mask: 255.255.0.0, Hosts: 2¹⁶ - 2 = 65,534, Range: 192.168.0.0 - 192.168.255.255 (usable: .0.1 - .255.254). Use: University.

Formulas: Subnets = 2ᴮ (B = borrowed bits), Hosts = 2^(32 - Mask) - 2

5. Common Subnets

CIDRMaskSubnets (from /24)Usable HostsExample RangeUse Case
/24255.255.255.01254192.168.0.1 - .254Full office
/25255.255.255.1282126192.168.0.1 - .126Two departments
/26255.255.255.192462192.168.0.1 - .62Four teams
/23255.255.254.01 (supernet)510192.168.0.1 - 1.254300 CCTVs

FAQs

Why borrow bits?

Each bit doubles subnets (2¹ = 2, 2² = 4).

What’s subnet 0?

First range (e.g., 192.168.0.0/26)—usable now, skipped in old systems.

Can /21 replace /24 for 510 devices?

Yes, /21 (2046 hosts) fits 510 easily; /24 (254) doesn’t.

Section 4: VLANs vs. Subnets

Goal: Understand VLANs, how they differ from subnets, and why they’re used.

1. What’s a VLAN?

A VLAN is like separate rooms in a house, but all on one switch. It groups devices without needing extra cables or routers.

Uses tags (VLAN IDs) to mark traffic.

2. VLANs vs. Subnets

FeatureSubnetVLAN
What It IsSplits IPsSplits switch traffic
Layer3 (IP layer)2 (MAC layer)
Example192.168.1.0/24 vs. .2.0/24VLAN 10 vs. VLAN 20
Device NeededRouter/FirewallSwitch

3. Why VLANs Over Subnets?

  • Security: Guests (VLAN 30) can’t see Servers (VLAN 40).
  • Less Chaos: Cuts broadcast traffic (e.g., ARP floods).
  • Easier: Move a PC to VLAN 20 without changing its IP.

4. 4 VLAN Example

VLANPurposeSubnetRangeDevices
10IT192.168.1.0/26192.168.1.1 - .6250 PCs
20HR192.168.1.64/27192.168.1.65 - .9430 PCs
30Guests192.168.1.128/27192.168.1.129 - .15820 devices
40Servers192.168.1.192/28192.168.1.193 - .20610 servers

Why It Matters: Keeps Guests out of Servers, reduces network noise, fits all in one /24.

5. Configuring VLANs

FortiGate (Router)

StepActionDetails
1Add VLANNetwork > Interfaces > New > VLAN, ID: 10, IP: 192.168.1.1/26
2Link to PortParent Interface: LAN (e.g., port1)
3DHCPEnable DHCP, Range: 192.168.1.1 - .62
4PolicyAllow VLAN 10 to WAN (internet)

Cisco Switch

StepActionDetails
1Create VLANvlan 10
name IT
2Assign Portsinterface range fa0/1-5
switchport mode access
switchport access vlan 10
3Trunk to Routerinterface fa0/24
switchport mode trunk

D-Link Switch

StepActionDetails
1VLAN SetupWeb GUI > VLAN > Add, ID: 10, Name: IT
2Assign PortsPorts 1-5: Untagged VLAN 10
3Trunk PortPort 24: Tagged VLAN 10

MikroTik

StepActionDetails
1Add VLAN/interface vlan add vlan-id=10 interface=ether1
2IP Setup/ip address add address=192.168.1.1/26 interface=vlan10
3DHCP/ip dhcp-server add interface=vlan10

pfSense

StepActionDetails
1Add VLANInterfaces > VLANs > Add, ID: 10, Parent: LAN
2Assign InterfaceInterfaces > Assign, VLAN 10, IP: 192.168.1.1/26
3DHCPServices > DHCP Server, Enable on VLAN 10

Formula: VLANs don’t change IP math—use Subnet formulas (Hosts = 2^(32 - Mask) - 2)

FAQs

VLANs or subnets alone?

VLANs with subnets are best—VLANs handle traffic, subnets organize IPs.

Why not more subnets?

VLANs save hardware and simplify moves.

How many VLANs?

Up to 4094, but switches limit it (e.g., D-Link might cap at 128).

Section 5: NAT and PAT (Getting Online)

Goal: Learn how private IPs connect to the internet.

1. What’s NAT?

NAT is like a translator—it changes your private IP (e.g., 192.168.1.10) to a public IP (e.g., 203.0.113.1) so you can browse the web.

Types:

  • Static NAT: 1 private IP → 1 public IP (e.g., a server).
  • Dynamic NAT: Many private IPs → a pool of public IPs.
  • PAT (Port Address Translation): Many private IPs → 1 public IP using ports.

2. PAT Explained

PAT is a special NAT that adds port numbers to squeeze lots of devices into one public IP.

How It Works:

  • Laptop (192.168.1.10:12345) → Router (203.0.113.1:54321).
  • Phone (192.168.1.11:56789) → Router (203.0.113.1:98765).

Real-World: Your home WiFi—10 devices share 1 public IP via PAT.

3. Configuring NAT/PAT

FortiGate

StepActionDetails
1PAT (Default)Policy & Objects > IPv4 Policy, LAN-to-WAN, Enable NAT
2Static NATVirtual IPs > New, External: 203.0.113.2, Mapped: 192.168.1.10
3PolicyAllow WAN-to-LAN to Virtual IP

Cisco

StepActionDetails
1PATip nat inside source list 1 interface Gi0/0 overload
access-list 1 permit 192.168.1.0 0.0.0.255
2Static NATip nat inside source static 192.168.1.10 203.0.113.2

MikroTik

StepActionDetails
1PAT/ip firewall nat add chain=srcnat out-interface=ether1 action=masquerade
2Static NAT/ip firewall nat add chain=dstnat dst-address=203.0.113.2 to-addresses=192.168.1.10

pfSense

StepActionDetails
1PATFirewall > NAT > Outbound, Enable Hybrid Mode
2Static NATFirewall > NAT > 1:1, External: 203.0.113.2, Internal: 192.168.1.10

Formula: PAT Ports = 2¹⁶ = 65,536 per public IP

FAQs

NAT vs. PAT?

NAT is broader (1-to-1 or pool); PAT is many-to-1 with ports.

Why PAT at home?

One public IP handles all your devices cheaply.

Can I skip NAT?

Yes, with public IPs, but they’re rare and costly.

Section 6: Multicast and Experimental IPs

Goal: Understand special IPs for group messaging and testing.

1. Multicast (Class D)

Range: 224.0.0.0 - 239.255.255.255.

Sends data to many devices at once (e.g., live TV).

Examples: 224.0.0.1 (all local devices), 239.255.255.250 (smart TVs).

2. Experimental (Class E)

Range: 240.0.0.0 - 255.255.255.255.

For research, not internet-ready.

Formula: No host calc—fixed ranges

FAQs

Can I set 224.0.0.251 on my PC?

No, you need a private IP (e.g., 192.168.1.10) and join the group.

What if two companies use 224.0.0.252?

Streams clash unless they use unique IPs (e.g., 239.1.1.x).

Class E at home?

Works locally, but no internet.

Section 7: Dynamic IP to Static IP

Goal: Make a changing IP act like a fixed one.

1. Tools

  • No-IP: Free DDNS (e.g., myhome.no-ip.com).
  • Cloudflare Zero Trust: Secure tunneling.
  • DynDNS: DDNS with domains.

2. Configs

FortiGate

StepActionDetails
1Enable DDNSSystem > Network > DNS, No-IP, myhome.no-ip.com
2WANNetwork > Interfaces, WAN to DHCP, Apply DDNS
3VIPVirtual IPs, Map WAN to 192.168.1.10

Cisco

StepActionDetails
1DDNSip ddns update method NOIP
http add http://user:[email protected]
2Applyinterface Gi0/0
ip ddns update NOIP

MikroTik

StepActionDetails
1DDNS/ip ddns set enabled=yes hostname=myhome.no-ip.com
2NAT/ip firewall nat add chain=dstnat to-addresses=192.168.1.10

pfSense

StepActionDetails
1DDNSServices > Dynamic DNS, Add No-IP client
2Port ForwardFirewall > NAT, Redirect WAN to 192.168.1.10

3. Better Protocols

ProtocolSpeedSecurityUse Case
WireGuardFastHighModern VPN
GREFastLowSimple tunnels
IPsecMediumHighCommon VPN

Formula: No math—just config steps

FAQs

Can I skip VPN with dynamic IP?

No, use DDNS or tunnels unless you get static IP.

Why WireGuard?

Faster than IPsec, less lag.

Section 8: Advanced IPv4 Topics

Goal: Explore extra tools and concepts.

  • IP Fragmentation: Splits big packets (e.g., 4000 bytes → 1500-byte chunks).
  • IPv4 Header: Contains Source IP, Destination IP, TTL (hops).
  • ARP: Links IPs to MAC (e.g., 192.168.1.1 → router’s MAC).
  • DHCP: Auto-assigns IPs (e.g., 192.168.1.100 - .150). FortiGate: Network > Interfaces > LAN, Enable DHCP.
  • Default Gateway: Exit point (e.g., 192.168.1.1 to internet).
  • QoS: Prioritizes traffic (e.g., VoIP over downloads).

Formula: No specific math—concept-based

FAQs

Why fragmentation?

Big data needs splitting; avoid with smaller MTU.

What’s TTL?

Limits packet life—drops at 0 to avoid loops.

Section 9: IP-to-IP Routing and Virtual IPs

Goal: Understand how packets travel and why VIPs work.

1. IP-to-IP Routing

Packets hop from IP to IP via routers using tables (e.g., “192.168.2.0/24 go to 203.0.113.1”).

2. Virtual IPs (VIPs)

Why Gateway IP? The public IP (e.g., 203.0.113.1) is what outsiders see; VIP maps it to private (e.g., 192.168.1.10).

FortiGate: Virtual IPs > New, External = WAN IP.

Formula: No math—routing logic

FAQs

Why not internal IP for VIP?

Private IPs don’t work outside your network.

Routing without gateway?

No, it’s your network’s door to the world.

Section 10: Buying and Routing ICANN IPs

Goal: Get and use your own public IPs.

1. How to Buy

Go to an RIR (e.g., ARIN.net). Pay ($500 + $150/year for /24, e.g., 203.0.114.0/24).

2. Routing

Use BGP with your ISP or cloud (e.g., AWS) to announce IPs.

Formula: No math—process-based

FAQs

Why not use locally?

Possible, but public IPs are for internet use.

What’s BGP?

Protocol to share your IPs globally.

Simple Notes for Daily Use

Quick Reference: Key ideas and formulas you can check anytime.

  1. IP Basics: IPv4 = 32 bits (e.g., 192.168.1.1). Public = Internet, Private = Local.
  2. Classes: A: /8, 16M hosts (10.x.x.x). B: /16, 65K (172.16-31.x.x). C: /24, 254 (192.168.x.x).
  3. Subnetting: Subnets = 2ᴮ (B = borrowed bits), Hosts = 2^(32 - Mask) - 2. Example: /24 → /26 = 4 subnets, 62 hosts each.
  4. VLANs: Splits switch traffic (e.g., VLAN 10 = IT). vs. Subnet: VLAN = Layer 2, Subnet = Layer 3.
  5. NAT/PAT: NAT: Private → Public. PAT: Many private → 1 public with ports.
  6. Multicast: 224-239.x.x.x for groups (e.g., streaming).
  7. Configs (e.g., VLAN 10): FortiGate: Network > VLAN, ID 10, IP 192.168.1.1/26. Cisco: vlan 10, switchport access vlan 10.
IPv4 Networking Calculators: Subnet, CIDR, and More

IP Subnet Calculator

Calculate Subnets for Your Network

This calculator helps you determine the number of subnets, hosts per subnet, and IP ranges when you subnet a network. It’s directly related to Section 3 of the IPv4 syllabus blog, where we discuss subnetting step-by-step.

CIDR Calculator

Determine Usable Hosts and IP Ranges

This calculator helps you calculate the number of usable hosts and IP ranges for a given CIDR notation (e.g., 192.168.0.0/23). It ties into Section 3 of the blog, where we discuss CIDR and supernetting.

Binary to Decimal Converter

Convert IP Addresses Between Formats

This converter helps you understand IP addresses in binary form, which is useful for learning how IPs work (Section 1 of the blog). For example, convert 192.168.1.1 to binary or vice versa.

Wildcard Mask Calculator

Generate Wildcard Masks for Configurations

This calculator generates wildcard masks for subnet masks, which are used in Cisco configurations (Section 4 and 5 of the blog). For example, a subnet mask of 255.255.255.0 has a wildcard mask of 0.0.0.255.

Trusted by some of the biggest brands

We’re Waiting To Help You

Get in touch with us today and let’s start transforming your business from the ground up.