On-the-Job Attachment Preparation
Packet Tracer Phase 1 of 3
Packet Tracer Phase 1: Workspace Basics, Cables & Ping Mechanics
Mastering Cisco Packet Tracer GUI, choosing cable types, configuring IP parameters, and understanding packet behavior.
🛠️ Goal for Attachment Readiness
This tutorial is designed so you don't start from zero when stepping into your industrial attachment IT department. After following these steps, you will understand not just how to build networks in Packet Tracer, but why every single cable, port, and IP setting is used.
1. Navigating the Cisco Packet Tracer Interface
The Workspace Canvas
- Logical Workspace: Shows schematic network topology diagram, device connections, and logical IP subnets.
- Physical Workspace: Simulates real-world geographical placement (cities, offices, wiring closets, server racks, and network cabinet shelves).
- Realtime vs. Simulation Mode: Realtime mode processes traffic instantly (standard operation). Simulation mode allows you to pause time and step through ICMP/IP packet movements frame-by-frame.
Device Selection Box (Bottom Left)
- Network Devices: Routers (Cisco 4331, 2911), Switches (Cisco 2960 24-Port), Hubs, Wireless Access Points, Firewalls.
- End Devices: PCs, Laptops, Servers, IP Phones, Smart TVs, CCTV IP Cameras.
- Connections (Lightning Bolt Icon): Cable types (Copper Straight-Through, Crossover, Fiber Optic, Console).
2. Demystifying Cable Types: What to Use & Why
Cable Type Selection Matrix & Industrial Rationale
Cable Type Devices Connected Why This Cable is Used
---------------------------------------------------------------------------------------------------------
Copper Straight-Through Different Layer Devices Pin 1 (TX+) on PC connects to Pin 1 (RX+)
(Solid Black Line) - PC to Switch on Switch. Switch internal circuitry handles
- Router to Switch the crossover automatically.
- Server to Switch
Copper Crossover Same Layer Devices Requires physical swap of transmit (TX)
(Dashed Black Line) - Switch to Switch and receive (RX) wire pairs when connecting
- PC to PC identical network layer ports directly.
- Router to Router
Fiber Optic High-Speed / Long Distance Uses light pulses over glass. Connects SFP+
(Solid Yellow Line) - Switch to Switch Uplink transceiver ports for gigabit rack backbones.
- Router to ISP Fiber Box
Console Cable PC to Switch/Router Light blue rollover cable used to gain initial
(Light Blue Line) RS-232 / USB -> Console Port out-of-band CLI Terminal access on new devices.
3. Step-by-Step Practical Lab: Building Your First Switched Network
Lab Scenario: Connect PC0 and PC1 via Cisco 2960 Switch
Step 1: Place Devices onto Canvas
Click End Devices $\rightarrow$ Drag 2 PCs (PC0 and PC1) onto workspace canvas.
Click Network Devices $\rightarrow$ Switches $\rightarrow$ Drag 1 Cisco 2960 24-Port Switch onto canvas.
Click End Devices $\rightarrow$ Drag 2 PCs (PC0 and PC1) onto workspace canvas.
Click Network Devices $\rightarrow$ Switches $\rightarrow$ Drag 1 Cisco 2960 24-Port Switch onto canvas.
Step 2: Connect Cabling
Click Connections (Lightning Bolt) $\rightarrow$ Select Copper Straight-Through (Solid Black Line).
• Click PC0 $\rightarrow$ Select
• Click PC1 $\rightarrow$ Select
Notice: Switch port lights turn amber initially (STP 30-second listening/learning phase) before turning green!
Click Connections (Lightning Bolt) $\rightarrow$ Select Copper Straight-Through (Solid Black Line).
• Click PC0 $\rightarrow$ Select
FastEthernet0 $\rightarrow$ Click Switch $\rightarrow$ Select FastEthernet 0/1.• Click PC1 $\rightarrow$ Select
FastEthernet0 $\rightarrow$ Click Switch $\rightarrow$ Select FastEthernet 0/2.Notice: Switch port lights turn amber initially (STP 30-second listening/learning phase) before turning green!
Step 3: Configure IP Addressing
• Click PC0 $\rightarrow$ Desktop tab $\rightarrow$ IP Configuration $\rightarrow$ Select Static.
IPv4 Address:
• Click PC1 $\rightarrow$ Desktop tab $\rightarrow$ IP Configuration $\rightarrow$ Select Static.
IPv4 Address:
• Click PC0 $\rightarrow$ Desktop tab $\rightarrow$ IP Configuration $\rightarrow$ Select Static.
IPv4 Address:
192.168.1.10 | Subnet Mask: 255.255.255.0.• Click PC1 $\rightarrow$ Desktop tab $\rightarrow$ IP Configuration $\rightarrow$ Select Static.
IPv4 Address:
192.168.1.11 | Subnet Mask: 255.255.255.0.
Step 4: Test ICMP Connectivity with Ping
Click PC0 $\rightarrow$ Desktop tab $\rightarrow$ Open Command Prompt.
Execute command:
Reply from 192.168.1.11: bytes=32 time<1ms TTL=128 (0% loss)
Click PC0 $\rightarrow$ Desktop tab $\rightarrow$ Open Command Prompt.
Execute command:
ping 192.168.1.11Reply from 192.168.1.11: bytes=32 time<1ms TTL=128 (0% loss)
💡 Why Did This Work? (The Underlying Packet Mechanics)
When PC0 pings PC1, PC0 checks if PC1's IP is on the same local subnet (`192.168.1.0/24`). Finding that it is, PC0 broadcasts an ARP Request ("Who has 192.168.1.11?"). PC1 responds with its MAC address. PC0 then encapsulates the ICMP Echo Request frame and sends it to the switch, which forwards it directly to PC1's switch port!