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.
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.


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.
Once inside conf t mode on the switch/router, I learned a few important commands:
ip routing
interface fa0/0
no switchport
no shutdown
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.

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

To fix it:
no negotiation auto
duplex auto
no logging console

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