Skip to the content.

🌐 Session 4 — Connecting Two Routers via Serial Interface

🕛 Overview

In this session, we expanded our Packet Tracer lab by connecting two separate LAN-based networks, each with its own router. The goal was to enable inter-router communication using Serial interfaces, demonstrating a key concept in WAN connectivity.

This setup illustrated how data travels between multiple networks through routers interconnected by a point-to-point serial link, introducing concepts such as DCE/DTE roles, clock rate configuration, and static routing fundamentals.

🔍 Concept Recap:


🧩 Part 1 — Network Topology Overview

We built a network with two main routers (R0 and R1) interconnected via a Serial link. Each router connects to two separate LANs through FastEthernet interfaces.

🖊️ Addressing Summary

Network Router Interface IP Address Subnet Mask Description
10.1.0.0/24 R0 Fa0/0 10.1.0.1 255.255.255.0 First subnet of network 10.0.0.0 (Switch0, PCs)
20.1.0.0/24 R0 Fa0/1 20.1.0.1 255.255.255.0 First subnet of network 20.0.0.0 (Switch1, PCs)
20.2.0.0/24 R1 Fa0/0 20.2.0.1 255.255.255.0 Second subnet of network 20.0.0.0 (Switch2, PCs)
10.2.0.0/24 R1 Fa0/1 10.2.0.1 255.255.255.0 Second subnet of network 10.0.0.0 (Switch3, PCs)
192.168.1.0/30 R0 S0/0/0 192.168.1.1 255.255.255.252 Serial link to R1 (DCE side)
192.168.1.0/30 R1 S0/0/0 192.168.1.2 255.255.255.252 Serial link to R0 (DTE side)

🗿 Explanation:

Type Address Description
Network address 192.168.1.0 identifies the subnet
First usable host 192.168.1.1 device 1
Second usable host 192.168.1.2 device 2
Broadcast address 192.168.1.3 used to talk to all hosts in the subnet

🔧 Part 2 — Serial Connection Setup

🔌 Serial Connection Explanation:

The serial cable connects R0 and R1 through their Serial0/0/0 interfaces. In Packet Tracer, you can identify the DCE side by hovering over the cable — a small label indicates which end is DCE. The DCE side (R0) must define the clock rate to synchronize communication. Without it, the link LEDs stay orange instead of green.


⚙️ Part 3 — Router Configuration (CLI)

alt text

🖥️ R0 Configuration (DCE)

Router(config)# interface Serial0/0/0
Router(config-if)# ip address 192.168.1.1 255.255.255.252
Router(config-if)# clock rate 19200
Router(config-if)# no shutdown
Router(config-if)# exit

🖥️ R1 Configuration (DTE)

Router(config)# interface Serial0/0/0
Router(config-if)# ip address 192.168.1.2 255.255.255.252
Router(config-if)# no shutdown
Router(config-if)# exit

🐟 Note: Only the DCE side (R0) sets a clock rate. Use show controllers serial to check which router is DCE.


🔄 Part 4 — Verification and Testing

After configuring the routers, verify that the Serial and FastEthernet interfaces show green link lights.

From any PC in R0’s LAN (e.g., 10.1.0.2), test connectivity to a PC in R1’s LAN (e.g., 10.2.0.2):

ping 10.2.0.2

A successful ping confirms that inter-router serial communication and routing between subnets work correctly.


🧬 Part 5 — OSI Layer Perspective

OSI Layer Device/Function in this Lab Example
Layer 1 — Physical Serial Cable (DCE/DTE), Ethernet Clock rate synchronization, cabling
Layer 2 — Data Link Switches Frame forwarding using MAC addresses
Layer 3 — Network Routers IP addressing, routing between subnets
Layer 4–7 Not directly configured Ping (ICMP) operates at Layer 3–4

💡 Insight: The serial link operates across both the Physical and Network layers, allowing routers to connect multiple LANs through WAN links.


📚 Concepts Reinforced


📝 Exam Tips


🏁 Summary

In Session 4, we:

🗿 This session bridges LAN fundamentals with WAN concepts, demonstrating inter-router communication over a serial connection.