DEV Community

Aisalkyn Aidarova
Aisalkyn Aidarova

Posted on

Install Packet Tracer (Mac) + First Network

What is Packet Tracer

Cisco Packet Tracer is a network simulation tool created by Cisco.

It allows you to:

  • build networks (PCs, switches, routers)
  • connect devices using cables
  • assign IP addresses
  • test connectivity (ping)
  • troubleshoot network issues

Why it is used

  • to understand how networks actually work
  • to visualize communication between devices
  • to practice safely without real hardware
  • to build foundational networking skills used in cloud (AWS, Kubernetes)

STEP 1 β€” Create Cisco Account

Open:

πŸ‘‰ https://www.netacad.com/

Actions:

  1. Click Sign Up
  2. Create account (email + password)
  3. Verify email
  4. Log in

STEP 2 β€” Download Packet Tracer (Mac)

Open:

πŸ‘‰ https://www.netacad.com/resources/lab-downloads

Actions:

  1. Scroll to Packet Tracer
  2. Select macOS (.dmg)
  3. Download file

STEP 3 β€” Install (Mac)

  1. Open .dmg
  2. Drag Packet Tracer β†’ Applications
  3. Open from Applications

If blocked:

  • System Settings β†’ Privacy & Security β†’ Open Anyway

STEP 4 β€” First Launch

  1. Open Packet Tracer
  2. Log in using Cisco account

STEP 5 β€” Interface Overview

Image

Image

Image

Image

Image

Image

Main components

  • Workspace β†’ area to build network
  • Bottom panel β†’ devices and tools

Device Types

PC (End Devices)

  • Represents a computer
  • Used to send/receive data

Switch

  • Connects devices in the same network
  • Operates inside one LAN

Router

  • Connects different networks
  • Enables communication between networks

Cables (Connections ⚑)

  • Used to connect devices physically
  • Use: Copper Straight-Through

STEP 6 β€” First Network Build


Add Devices

  • Add 2 PCs
  • Add 1 Switch

Connect Devices

  1. Click ⚑ Connections
  2. Select Copper Straight-Through

Connect:

  • PC0 β†’ Switch
  • PC1 β†’ Switch

Image

Image

Image

Image

Image


STEP 7 β€” Configure IP Addresses


PC0

  • Open PC0 β†’ Desktop β†’ IP Configuration

Set:

IP Address: 192.168.1.1
Subnet Mask: 255.255.255.0
Enter fullscreen mode Exit fullscreen mode

PC1

Set:

IP Address: 192.168.1.2
Subnet Mask: 255.255.255.0
Enter fullscreen mode Exit fullscreen mode

STEP 8 β€” Test Connectivity


On PC0 β†’ Command Prompt:

ping 192.168.1.2
Enter fullscreen mode Exit fullscreen mode

Expected Result

  • Reply β†’ network is working
  • Timeout β†’ configuration issue

STEP 9 β€” Troubleshooting


Change PC1 IP:

192.168.2.2
Enter fullscreen mode Exit fullscreen mode

Run ping again:

ping 192.168.1.2
Enter fullscreen mode Exit fullscreen mode

Result

  • Communication fails

Reason

  • Devices are in different networks
  • No router present

STEP 10 β€” Fix

Change PC1 back:

192.168.1.2
Enter fullscreen mode Exit fullscreen mode

Run ping again β†’ success


RESULT

After completing this lab:

  • network devices can be added and connected
  • IP addressing is understood
  • connectivity can be tested using ping
  • basic troubleshooting is performed

PRACTICE


Task 1

  • Add 3 PCs
  • Connect to 1 switch
  • All must communicate

Task 2

  • Break IP configuration
  • Restore connectivity

This completes the first Packet Tracer lab.

Top comments (0)