0 / 0 steps
Packet Tracer Lab Guide

Enterprise Routing, DHCP & IP Helper-Address

A step-by-step walkthrough for setting up four routers, four LANs, RIP routing, a centralized DHCP server, and the ip helper-address relay that ties it all together.
Your mission: give every device the correct IP address, get PC0 through PC7 their addresses automatically from one central DHCP server, route between all networks with RIP, and successfully ping from PC0 all the way to PC7.
Live Topology Status
R1
R2
R3
R4
i

Addressing Reference Sheet

Keep this open in a second tab — every step below points back to it.

This is exactly the plan built into the topology you were given (matches the subnet labels already drawn on the canvas).

RouterInterfaceConnects toIP AddressSubnet Mask
R1GigabitEthernet0/0/0Switch1 (LAN)192.168.10.1255.255.255.0
R1GigabitEthernet0/0/1R2 (WAN)192.168.100.1255.255.255.0
R2GigabitEthernet0/0/0Switch2 (LAN)192.168.20.1255.255.255.0
R2GigabitEthernet0/0/1R1 (WAN)192.168.100.2255.255.255.0
R2GigabitEthernet0/0/2R3 (WAN)192.168.110.1255.255.255.0
R3GigabitEthernet0/0/0Switch3 (LAN)192.168.30.1255.255.255.0
R3GigabitEthernet0/0/1R2 (WAN)192.168.110.2255.255.255.0
R3GigabitEthernet0/0/2R4 (WAN)192.168.120.1255.255.255.0
R4GigabitEthernet0/0/0Switch4 (LAN)192.168.40.1255.255.255.0
R4GigabitEthernet0/0/1R3 (WAN)192.168.120.2255.255.255.0
DeviceSettingValue
Server0Static IP192.168.40.10
Server0Subnet Mask255.255.255.0
Server0Default Gateway192.168.40.1

PC0–PC7 get their IP addresses automatically — you won't type numbers into them, you'll just switch them to DHCP.

1

Set IP Addresses on All Four Routers

GUI only — no typing commands yet

Before you start: Left-click a router once to open its window. Click the Config tab at the top of that window (not CLI, not Desktop). You'll see a list of interfaces on the left side of that window — this is where you'll do all your router IP work in this phase.

Router R1 (leftmost router)

Router R2

Router R3

Router R4 (rightmost router)

Quick check: every green link light between routers and switches on the main canvas should now be solid green (not red or blinking amber). If a link is still red, the Port Status on one end probably wasn't switched On.
2

Turn On RIP Routing

GUI only — tells each router which networks to share

RIP is how the routers learn about networks they aren't directly connected to. You'll tell each router about the networks it does touch, and RIP automatically shares that information with its neighbors.

On each router: R1, R2, R3, and R4

RouterNetworks to add in RIP
R1192.168.10.0    192.168.100.0
R2192.168.20.0    192.168.100.0    192.168.110.0
R3192.168.30.0    192.168.110.0    192.168.120.0
R4192.168.40.0    192.168.120.0
Quick check: give it 15–20 seconds after the last router is configured (RIP needs a moment to converge), then try clicking the envelope-shaped "Add Simple PDU" tool and sending a ping from R1's LAN interface icon to R4's LAN interface icon on the topology. If it fails immediately, double check every network number above was typed correctly.
3

Set Up Server0 as the DHCP Server

GUI only — one server, four separate address pools

Step A — Give Server0 a static address

Step B — Build the four DHCP pools

Pool NameDefault GatewayDNS ServerStart IP AddressSubnet Mask
LAN1192.168.10.10.0.0.0192.168.10.10255.255.255.0
LAN2192.168.20.10.0.0.0192.168.20.10255.255.255.0
LAN3192.168.30.10.0.0.0192.168.30.10255.255.255.0
LAN4192.168.40.10.0.0.0192.168.40.20255.255.255.0
Why does LAN4 start at .20 instead of .10? Server0 itself is already using 192.168.40.10 as a static address. Starting the pool at .20 keeps DHCP from accidentally trying to hand that same address to a PC.
4

Configure IP Helper-Address CLI required

The one step that has to be typed — this is the DHCP relay

Why CLI, and why now? DHCP requests start as a broadcast, and routers never forward broadcasts by default. PC0, PC2, and PC4 are on different networks than Server0, so without a little help their DHCP requests will hit R1, R2, or R3 and go no further. ip helper-address tells a router "if you see a DHCP broadcast on this interface, forward it directly to this one server address instead." There's no GUI screen for this command in Packet Tracer, so this is the only place you'll open a CLI window.

Apply this on R1, R2, and R3 only

R4 does not need this command — Server0 lives on R4's own LAN, so those DHCP broadcasts already reach it directly without any help.

Router> enable
Router# configure terminal
Router(config)# interface gigabitEthernet0/0/0
Router(config-if)# ip helper-address 192.168.40.10
Router(config-if)# exit
Router(config)# exit
Router# copy running-config startup-config
Typing tip: if you make a mistake mid-line, backspace works normally. If a line gets confusing, press Ctrl+C and start that line over — it won't break anything you already saved.
5

Switch All Eight PCs to DHCP

GUI only — this is the easy part

Do this on PC0 through PC7 (all eight PCs)

Quick check: PC0 and PC1 should receive addresses starting with 192.168.10., PC2/PC3 with 192.168.20., PC4/PC5 with 192.168.30., and PC6/PC7 with 192.168.40. If any PC shows 0.0.0.0 or an address starting with 169.254, the ip helper-address on that PC's router likely wasn't typed correctly — go back and re-check Phase 4.
6

Final Test — Ping PC0 to PC7

Prove the whole network actually works end to end

Lab complete when: PC0 can successfully ping PC7, and every checkbox above is checked. Nice work — you just built a routed, multi-VLAN network with centralized DHCP from scratch.