Another Security Blog

A place to show my mad skills

TidBits Walkthroughs Resources Projects View on GitHub
18 May 2025

TB First GNS3 Topology

by C. Casquatch

Network Simulation

This week I built my first network topology in GNS3. The best way to get comfortable is to build something, break it, and learn from the mess. Mission accomplished.

Building the Topology

I started with a basic setup using unmanaged switches from the GNS3 device library. These are simple to use but lack a console interface. Instead, configuration is done via the device’s configuration panel—just selecting VLANs and assigning the number of ports.

Photo1

Photo2

To get hands-on with Cisco CLI, I imported a Cisco Etherswitch and a router. These gave me the chance to practice actual device configurations through the terminal.


CLI Highlights and Gotchas

Once inside conf t mode on the switch/router, I learned a few important commands:

Tip: Routed ports usually use 0/x, while switching interfaces are 1/x. Routed ports need to be brought up, meaning you need to use the ‘no shutdown’ on all routed ports.

After configuring static routes between devices, I made sure everything could ping everything else. Always satisfying to see those replies.

Photo4

Duplex Drama

One lesson came from a duplex mismatch between FastEthernet (100Mbps) and GigabitEthernet (1Gbps) interfaces. This caused a bunch of annoying console messages:

Photo5

To fix it:

NOTES: GNS3 is powerful, but it helps to know your device limitations (especially unmanaged switches). Interface types matter—don’t mix FastEthernet and Gigabit without adjusting duplex settings. no logging console is your best friend when the device won’t shut up.

tags: GNS3 - CCNA - Networking