Straight-through, crossover, coaxial & phone cables in Packet Tracer
🌐 Introduction to Networks🛠️ Packet Tracer👤 Reza Farashahi
In this practical you will explore different types of network cabling and learn when to use straight-through versus crossover cables. You will build a network topology, connect devices with the correct cable types, and label every connection.
🎯 Learning Objectives
Understand the differences between straight-through and crossover cables
Learn about twisted-pair, coaxial, and phone cabling
Practice selecting the correct cable for each connection
Label and document network connections properly
📦 Step 1 — Create a New File
Open Cisco Packet Tracer and create a new file.
🖥️ Step 2 — Add Network Devices
Add and label the following devices:
2 PCs (PC-PT) — label them "Laptop Computer" and "Desktop Computer"
1 Printer (Printer-PT) — label "Network Printer"
1 Server (Server-PT) — label "Network Attached Storage (NAS) Server"
2 Switches (2960-24TT) — label "Switch 1" and "Switch 2"
Right-click each cable and add labels using Place Note or the label tool. Make sure every link is clearly identified with its cable type.
✅ Step 6 — Verify Your Work
Review your topology and confirm:
All devices are properly connected
Each connection uses the correct cable type
Every connection and device is clearly labelled
🔩 Step 7 — Add a Second Interface to the Router
In Lab 1 you added an extra NIC to a server. Now you will add a serial module to the Router (2811) so it can connect to the DSL Modem side of the network.
Click on the Router to open its configuration window.
Go to the Physical tab.
Power off the router by clicking the power button.
In the left module list, find WIC-1ENET (single Ethernet WAN interface card).
Drag the module to an empty WIC slot on the router.
Power the router back on.
Close the configuration window.
Connect the New Interface
Select Copper Straight-Through.
Connect Router (Ethernet0/0/0 — the new port) → DSL Modem (Ethernet port).
Label this connection “Straight Through”.
Recall from Lab 1: You must always power off a device before adding hardware modules, then power it back on — just like when you added a second NIC to the servers.
⭐ Step 8 — Extend with a Star Sub-Network
In Lab 1 you created a standalone star topology. Now you will add a small star network that extends your existing topology.
Add 2 more PCs (PC-PT) to the workspace. Label them “PC 2” and “PC 3”.
Add 1 Laptop — label it “Laptop 2”.
Position all three devices around Switch 2, forming a star pattern.
Using Copper Straight-Through, connect:
PC 2 (FastEthernet0) → Switch 2
PC 3 (FastEthernet0) → Switch 2
Laptop 2 (FastEthernet0) → Switch 2
Label the area “Star Sub-Network” using Place Note.
Compare with Lab 1: In Lab 1, Switch 2 was the centre of an isolated star. Here it is part of a larger network — data from these new devices can travel through the Wireless Router, Cable Modem, and out to the Internet.
📶 Step 9 — Add & Configure a Wireless Device
In Lab 2 you verified wireless connections by checking for dotted lines. Now you will add a wireless device and configure its connection settings.
Add a Tablet
From End Devices, add a Tablet to the workspace and label it “Tablet”.
Configure the Wireless Router SSID
Click on Wireless Router 1 (SOHO) to open its settings.
Go to the GUI tab (the router’s web interface).
Navigate to Wireless → Basic Wireless Settings.
Set the SSID to “HomeLAN”.
Click Save Settings.
Connect the Tablet to Wi-Fi
Click on the Tablet to open its configuration.
Go to the Config tab → Wireless0.
Set the SSID to “HomeLAN” (must match the router).
Close the panel. A dotted line should appear connecting the Tablet to the Wireless Router.
Common mistake: If the Tablet does not connect, double-check that the SSID is typed exactly the same on both the router and the device — it is case-sensitive.
🔍 Step 10 — Test Connectivity with CLI Commands
In Lab 2 you used ipconfig and ping. Now you will use those commands again and also try tracert on a more complex network.
Check IP Addresses
Wait until all link lights turn green.
Click on PC 1 → Desktop tab → Command Prompt.
Run:
ipconfig
Note the IPv4 Address (e.g. 192.168.0.x).
Repeat on Laptop Computer and PC 2 to record their IPs.
Ping Across the Network
From PC 1’s Command Prompt, ping Laptop Computer:
ping 192.168.0.x
Replace with the Laptop’s actual IP.
Successful output looks like:
Reply from 192.168.0.x: bytes=32 time<1ms TTL=128
Now ping PC 2 (connected to Switch 2) from PC 1. Does it succeed?
Trace the Route
From PC 1’s Command Prompt, run:
tracert 192.168.0.x
Use PC 2’s IP address.
Observe how many hops the packet takes to reach PC 2.
Each line in the output represents a router or Layer 3 device the packet passed through.
New command — tracert: While ping tells you if a device is reachable, tracert shows you the path packets take to get there. This is invaluable for troubleshooting routing issues.
Troubleshooting: If pings fail, verify: (1) cables are correct types, (2) all link lights are green, (3) devices have IP addresses assigned via DHCP or static configuration.
📖 Cable Type Reference
Connection
Cable
When to Use
PC → Switch
Copper Straight-Through
Dissimilar devices (end device → network device)
Switch → Router
Copper Straight-Through
Dissimilar devices (switch → router)
Switch → Switch
Copper Crossover
Similar devices (switch → switch)
Switch → SOHO Router (switch ports)
Copper Crossover
Similar devices (switch → switch ports on SOHO router)
Router → Cable/DSL Modem
Copper Straight-Through
Dissimilar devices (router → modem)
Cable Modem → ISP
Coaxial
Cable internet service
DSL Modem → ISP
Phone Line (RJ-11)
DSL internet over telephone line
Auto-MDIX: Modern devices can auto-detect cable type and configure accordingly, making the straight-through vs. crossover distinction less critical in practice — but the theory is still essential to understand.
💭 Reflection Questions
Why do we use a crossover cable between two switches but a straight-through cable between a PC and a switch?
What is the wiring difference between a straight-through cable and a crossover cable?
Why does a cable modem use coaxial while a DSL modem uses a phone line?
When might you still need to know about crossover vs. straight-through despite Auto-MDIX?