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).
| Router | Interface | Connects to | IP Address | Subnet Mask |
|---|---|---|---|---|
| R1 | GigabitEthernet0/0/0 | Switch1 (LAN) | 192.168.10.1 | 255.255.255.0 |
| R1 | GigabitEthernet0/0/1 | R2 (WAN) | 192.168.100.1 | 255.255.255.0 |
| R2 | GigabitEthernet0/0/0 | Switch2 (LAN) | 192.168.20.1 | 255.255.255.0 |
| R2 | GigabitEthernet0/0/1 | R1 (WAN) | 192.168.100.2 | 255.255.255.0 |
| R2 | GigabitEthernet0/0/2 | R3 (WAN) | 192.168.110.1 | 255.255.255.0 |
| R3 | GigabitEthernet0/0/0 | Switch3 (LAN) | 192.168.30.1 | 255.255.255.0 |
| R3 | GigabitEthernet0/0/1 | R2 (WAN) | 192.168.110.2 | 255.255.255.0 |
| R3 | GigabitEthernet0/0/2 | R4 (WAN) | 192.168.120.1 | 255.255.255.0 |
| R4 | GigabitEthernet0/0/0 | Switch4 (LAN) | 192.168.40.1 | 255.255.255.0 |
| R4 | GigabitEthernet0/0/1 | R3 (WAN) | 192.168.120.2 | 255.255.255.0 |
| Device | Setting | Value |
|---|---|---|
| Server0 | Static IP | 192.168.40.10 |
| Server0 | Subnet Mask | 255.255.255.0 |
| Server0 | Default Gateway | 192.168.40.1 |
PC0–PC7 get their IP addresses automatically — you won't type numbers into them, you'll just switch them to DHCP.
GUI only — no typing commands yet
GUI only — tells each router which networks to share
| Router | Networks to add in RIP |
|---|---|
| R1 | 192.168.10.0 192.168.100.0 |
| R2 | 192.168.20.0 192.168.100.0 192.168.110.0 |
| R3 | 192.168.30.0 192.168.110.0 192.168.120.0 |
| R4 | 192.168.40.0 192.168.120.0 |
GUI only — one server, four separate address pools
| Pool Name | Default Gateway | DNS Server | Start IP Address | Subnet Mask |
|---|---|---|---|---|
| LAN1 | 192.168.10.1 | 0.0.0.0 | 192.168.10.10 | 255.255.255.0 |
| LAN2 | 192.168.20.1 | 0.0.0.0 | 192.168.20.10 | 255.255.255.0 |
| LAN3 | 192.168.30.1 | 0.0.0.0 | 192.168.30.10 | 255.255.255.0 |
| LAN4 | 192.168.40.1 | 0.0.0.0 | 192.168.40.20 | 255.255.255.0 |
The one step that has to be typed — this is the DHCP relay
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.R4 does not need this command — Server0 lives on R4's own LAN, so those DHCP broadcasts already reach it directly without any help.
GUI only — this is the easy part
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.Prove the whole network actually works end to end