Eventhacker
Knowledge / Network / IPv4 Addresses

IPv4 Addresses Explained for Event Technology

Almost every modern event-technology system relies on IP networking. Understanding IPv4, subnetting, and address assignment is the foundation of every stable production network.

IGVW context: SQQ10

IPv4 addressing, subnetting and event-network documentation are part of the practical knowledge area around IGVW SQQ10 for information and communication technology.

Official IGVW SQQ10 Standards overview

1. Introduction: IP Networks in Event Technology

Whether in audio, lighting, video, intercom, or stage control: IP networks are the central nervous system of modern live productions. Devices rely on IPv4 addresses to identify each other and exchange control and media streams.

Typical event protocols & systems using IPv4:

Dante AoIP AES67 Art-Net DMX sACN (E1.31) NDI Video OSC Control Media Servers Lighting Consoles Stageboxes Managed Switches

Consider a typical IP address assigned to a digital mixing console or laptop:

192.168.20.37

This address uniquely identifies the interface within the local network.

2. How an IPv4 Address Is Built

An IPv4 address consists of 32 bits divided into 4 octets (groups of 8 bits), separated by dots. Each octet has a decimal value between 0 and 255.

Decimal:   192      .  168      .  20       .  37
Binary:    11000000 .  10101000 .  00010100 .  00100101  (32 bits total)

Invalid Example: 192.168.300.20 — This address is invalid because 300 exceeds the maximum 8-bit value of 255 (2^8 = 256 possible values: 0 to 255).

3. Network Part and Host Part (Subnet Mask & CIDR)

An IP address alone is not sufficient. A device needs to know which part of the address defines the network, and which part identifies the specific device.

192.168.20.37 / 27   (Subnet Mask: 255.255.255.224)

The CIDR notation /27 means that 27 bits are reserved for the Network Part, leaving 5 bits for Host Addresses.

  • Network Address: 192.168.20.32
  • Broadcast Address: 192.168.20.63
  • Usable Host Range: 192.168.20.33 – 192.168.20.62 (30 Hosts)
Calculate subnets and usable host ranges quickly:

Use the Eventhacker Subnet Calculator for instant network analysis.

Open Subnet Calculator

4. Practical /24 Subnet Example

In small and medium event setups, a /24 subnet (subnet mask 255.255.255.0) is very common:

Dante Stagebox:        192.168.20.10 / 24
Mixing Console:       192.168.20.20 / 24
Engineering Laptop:   192.168.20.30 / 24

Network ID:           192.168.20.0
Broadcast:            192.168.20.255
Usable Host Range:    192.168.20.1 – 192.168.20.254 (254 devices)

Because all three devices share the network part 192.168.20.0/24, they belong to the same local IP subnet and can communicate directly without a router.

5. Different Subnets Require Routing

What happens when devices have incompatible network configurations?

Mixing Console:   192.168.20.20 / 24   --> Network A (192.168.20.0/24)
Stagebox:         192.168.21.10 / 24   --> Network B (192.168.21.0/24)

Troubleshooting scenario: "The Ethernet link LED is green, but the console cannot see the stagebox."

Even though the IP addresses look similar, they belong to different subnets. Communication across subnets requires a Layer 3 Router or Default Gateway.

6. Private IPv4 Address Ranges (RFC 1918)

Production networks use private IP addresses reserved by RFC 1918. These addresses are not routed over the public Internet:

Class / Range CIDR IP Address Range Typical Usage in Events
10.0.0.0 /8 /8 10.0.0.0 – 10.255.255.255 Large festival sites, tour rigs, complex VLAN structures
172.16.0.0 /12 /12 172.16.0.0 – 172.31.255.255 Broadcast trucks, venue networks, corporate event IT
192.168.0.0 /16 /16 192.168.0.0 – 192.168.255.255 Small to medium production setups, FOH control, local subnets

7. DHCP vs. Static IP Configuration

DHCP (Dynamic Host Configuration Protocol): A DHCP server automatically assigns IP address, subnet mask, default gateway, and DNS to clients. Excellent for quick setup and guest devices.

Static (Fixed) IP Assignment: Infrastructure components (routers, switches, media servers, main consoles, stageboxes, remote interfaces) should always receive documented static IPs to ensure predictable boot behavior without DHCP dependencies.

8. What Does 169.254.x.x (Link-Local / APIPA) Mean?

When a device is set to DHCP but no DHCP server responds, it automatically assigns itself an address from the Link-Local block:

169.254.0.0 / 16   (e.g., 169.254.83.21)

Important Event Note: A 169.254.x.x address is NOT automatically an error! For example, Dante audio networks use Link-Local self-configuration by design when operating without a DHCP server.

9. Why IPv4 Exists & Address Scarcity

Standardized in the early 1980s (RFC 791), IPv4 uses a 32-bit address space supporting approximately 4.3 billion theoretical addresses. In the 1980s, this seemed inexhaustible.

With the explosion of computers, smartphones, IoT, and network infrastructure, public IPv4 addresses became scarce. Techniques like NAT (Network Address Translation) and the newer IPv6 protocol address this scarcity. However, IPv4 remains the predominant standard in local event production networks.

10. Common Mistake: "The IP Addresses Look Almost the Same"

Comparing two IP addresses visually without checking the subnet mask is misleading:

Device A:  192.168.20.37 / 27   (Subnet ID: 192.168.20.32)
Device B:  192.168.20.65 / 27   (Subnet ID: 192.168.20.64)

Even though both addresses start with 192.168.20, the /27 boundary splits them into separate subnets. They cannot communicate without a router!

11. From Knowledge to Tools: Understand -> Check -> Apply -> Automate

Understanding IPv4 theory is essential, but on a busy event site you need fast, reliable calculations. The Eventhacker Network Toolbox provides specialized tools built for event technicians.

Open Subnet Calculator Network Toolbox Back to Network Knowledge