Designing an Office Network: From 10 to 500 People

A flat network works for a startup. It collapses at scale. Learn when and why to add VLANs, firewalls, DMZs, redundancy, and load balancers as your company grows.

Build a complete office network

Free interactive lab. No signup. Runs in your browser.

Quick Summary

Why Network Design Matters

A network that works perfectly for 10 people will struggle with 50, and completely fail with 200. As an organization grows, the network faces increasing broadcast traffic (every device shouting on the same segment), security risks (a compromised laptop can reach every server), and reliability requirements (downtime now affects hundreds of people). Good network design anticipates these challenges and addresses them with the right architecture at the right time.

The key principle is segmentation: dividing the network into smaller, isolated zones. Each zone has its own broadcast domain, its own security policies, and its own performance characteristics. Devices that need to communicate across zones go through a router or firewall, which can enforce access controls and prioritize traffic. This is the fundamental difference between a home network and an enterprise network.

Interactive: Scale Your Office Network

Drag the slider to change the number of employees. Watch the network architecture evolve.

10
Startup: Flat Network
Single switch + router. Everyone on the same subnet. Simple and cheap.
Internet
RouterGateway
Switch24-port
VLAN 10Engineering
VLAN 20Sales
VLAN 30Guest WiFi
FirewallStateful
DMZWeb/Mail
Server VLANInternal
Load BalancerHA pair
Router 2Redundant
Switch StackRedundant
MonitoringSNMP/Syslog

Tier 1: The Startup (10 Employees)

With 10 people, a flat network is perfectly fine. One router connects to your ISP. One switch connects all desktops, a printer, and perhaps a small NAS or file server. Everyone is on the same subnet (like 192.168.1.0/24). WiFi comes from the router's built-in access point or a single dedicated AP.

At this scale, broadcast traffic is minimal (10 devices produce very little). Security is handled by the router's NAT and basic firewall. There is no redundancy -- if the switch dies, everyone is offline. But for 10 people, the cost and complexity of redundancy is not justified. A spare switch on the shelf is your disaster recovery plan.

Tier 2: Growing Up (50 Employees)

At 50 employees, problems emerge. The accounting department does not need to see engineering's traffic. A guest on the WiFi should not be able to browse shared file servers. Broadcast traffic from 50 devices starts causing noticeable overhead. This is when you introduce VLANs (Virtual LANs).

VLANs divide one physical switch into multiple logical networks. Engineering gets VLAN 10 (10.0.10.0/24), Sales gets VLAN 20 (10.0.20.0/24), and Guest WiFi gets VLAN 30 (10.0.30.0/24). Traffic between VLANs must go through the router (or a Layer 3 switch), which can enforce access control lists. The guest VLAN is configured with internet access only -- no access to internal resources.

You also need managed switches (not the cheap unmanaged ones from the startup phase) that support 802.1Q VLAN tagging. Your WiFi expands to multiple access points, each broadcasting SSIDs mapped to different VLANs. A single WiFi AP per floor is typical at this size.

Tier 3: The Real Office (200 Employees)

At 200 employees, security and reliability become critical. A dedicated firewall replaces the router's basic packet filter. It provides stateful inspection, IDS/IPS (Intrusion Detection/Prevention), VPN termination for remote workers, and granular access policies between VLANs. Products like pfSense, Fortinet FortiGate, or Palo Alto are common choices.

You now need a DMZ (Demilitarized Zone) -- a separate network segment for servers that must be accessible from the internet (web servers, email servers, VPN gateways). The DMZ sits between two firewall zones: the internet can reach the DMZ, and the DMZ can reach some internal resources, but the internet cannot directly access the internal network. If a DMZ server is compromised, the attacker is contained in the DMZ.

Structured cabling becomes essential. You need patch panels, cable management, a dedicated server room or closet with proper cooling, a UPS (Uninterruptible Power Supply), and labeled connections. Network documentation goes from "nice to have" to "absolutely critical" -- you cannot troubleshoot a 200-person network from memory.

Tier 4: The Enterprise (500 Employees)

At 500 employees, every component needs redundancy. A single switch failure should not take down a floor. A single firewall failure should not disconnect the company from the internet. A single ISP outage should not stop business operations.

You deploy redundant uplinks (two ISP connections with automatic failover), firewall HA pairs (active-passive or active-active with state synchronization), switch stacks (multiple switches acting as one logical unit), and load balancers for distributing traffic across multiple web servers or application servers.

A network monitoring system (Zabbix, PRTG, LibreNMS) watches every device, link, and port. It alerts you when a switch port goes down, when CPU usage spikes on a firewall, or when a VLAN is running out of DHCP addresses. At this scale, you cannot wait for users to report problems -- you need to detect and fix issues before users notice.

Network access control (802.1X) authenticates every device before it gets network access. An unauthorized laptop plugged into a wall jack gets quarantined to a restricted VLAN. This prevents rogue devices from joining the network and is often required for regulatory compliance (PCI-DSS, HIPAA).

Key Components at Each Scale

🔌

VLANs

Segment departments, isolate guest WiFi, and separate servers. Essential from 50+ employees. Each VLAN is its own broadcast domain with its own subnet. Inter-VLAN routing is controlled by firewall rules.

🛡

Firewall / DMZ

A dedicated firewall with a DMZ for public-facing servers. Essential from 200+ employees. Provides stateful inspection, VPN, IDS/IPS, and zone-based policies between internal, DMZ, and internet zones.

Redundancy

Dual ISPs, HA firewall pairs, switch stacks, and redundant power. Essential from 500+ employees. The goal: no single point of failure. Every critical path has a backup that activates automatically.

Common Design Mistakes

Flat Network at Scale

Keeping all 200 devices on one subnet. Broadcast storms, no security segmentation, and a single compromised device can sniff all traffic. Add VLANs when you hit 30-50 devices.

No Documentation

Not documenting IP assignments, VLAN maps, firewall rules, and physical cable runs. When the only person who knows the network leaves, you inherit an undocumented mystery.

Over-Engineering Too Early

Buying enterprise-grade equipment for 15 people. A $10,000 firewall is wasted on a startup. Scale your infrastructure with your actual needs, not your five-year projections.

WiFi Considerations

WiFi coverage is often the most complained-about aspect of office networking. A single consumer access point covers about 1500 square feet effectively. At 50+ employees, you need multiple enterprise APs with a wireless controller for centralized management, roaming support, and load balancing. Place APs on the ceiling with proper channel planning to minimize interference. Use 5 GHz for high-density areas (conferences, open offices) and 2.4 GHz for coverage in distant corners.

Always separate corporate WiFi (authenticated via 802.1X with individual credentials) from guest WiFi (open or simple password, internet-only access on an isolated VLAN). This prevents visitors from accidentally or intentionally accessing internal resources.

Frequently asked questions about office networks

When should I add VLANs to an office network?

Add VLANs as soon as you have more than about 30 devices, separate departments, or guest WiFi. VLANs cut broadcast traffic, isolate guests from internal resources, and let you enforce inter-department firewall rules. Below 30 devices a flat network is usually fine.

What is a DMZ and why do I need one?

A DMZ (demilitarized zone) is a separate network segment for servers that must accept inbound traffic from the internet — public web, mail, or VPN gateways. The firewall lets the internet reach the DMZ but blocks the DMZ from reaching the internal network. If a DMZ server is compromised, the attacker is contained.

How big does an office need to be before it needs a dedicated firewall?

Around 100–200 employees, or earlier if you handle regulated data or accept inbound connections. The basic NAT firewall in a consumer router can't do stateful inspection, IDS/IPS, granular per-VLAN policies, or VPN termination at scale.

Do I need redundant ISPs?

If internet downtime stops your business — voice, SaaS apps, customer access — yes, by the time you hit a few hundred employees. Run two ISPs on different physical paths, ideally with different carriers, and use BGP or SD-WAN to fail over automatically.

What is 802.1X network access control?

802.1X requires every device to prove who it is before the switch port or WiFi grants network access. Unauthenticated devices are dropped into a quarantine VLAN. It is the standard way to keep rogue laptops and unmanaged IoT devices off the corporate network.

Try the office network lab

You just learned how office networks scale with VLANs, firewalls, DMZs, and redundancy. Now open a full office network, follow a request through DNS, the firewall and the load balancer, and tighten the firewall one rule at a time. VLANs have a lab of their own.

Launch the office network lab →