Skip to main content

GNS3: Notes

GNS3 Certified Associate Logo

As usual, notes is for myself and might be useful and also save time for beginners start using GNS3.

Ciso IOS images

It is not easy for beginners to find Cisco IOS images. I found this link with google search: Working Cisco IOS for GNS3. I hope it is still available when you read this note.

Juniper

Download working Juniper Junos for GNS3

Appliance Template

Location of appliance templates on Fedora

Appliance template files have '.gns3a' as their extension. Know where these templates' location in case you need to edit one of these templates. Example to find these template files on Linux.

[tuyen@g73jh ~]$ sudo find / -name *.gns3a 2>/dev/null
[sudo] password for tuyen: 
/tmp/tmpkhl7qd30.builtin.gns3a
/tmp/tmp51sg41c5.builtin.gns3a
/tmp/tmph7igq3he.builtin.gns3a
/tmp/tmp9luytesd.builtin.gns3a
/usr/lib/python3.7/site-packages/gns3server/appliances/security-onion.gns3a
/usr/lib/python3.7/site-packages/gns3server/appliances/fortisiem-super_worker.gns3a
/usr/lib/python3.7/site-packages/gns3server/appliances/juniper-vqfx-pfe.gns3a
/usr/lib/python3.7/site-packages/gns3server/appliances/arista-ceos.gns3a
/usr/lib/python3.7/site-packages/gns3server/appliances/cisco-3725.gns3a
/usr/lib/python3.7/site-packages/gns3server/appliances/bigswitch-bigcloud-fabric.gns3a
...

GNS3 VM

I also run GNS3 on Windows 10. When I upgraded GNS3 version 2.1.15 to 2.1.21, I got the following error:

Failed to connect to GNS3 VM (GNS3 VM): GNS3 version 2.1.21 is not the same as the GNS3 VM version 2.1.15. Please upgrade the GNS3 VM.

So, power on GNS3 VM (running on VMware Workstation) and upgrade that VM to 2.1.21 too.

Upgrade GNS3 VM

GNS3 on Fedora Workstation 30

I have followed this article, step-by-step to install and run GNS3 successfully on Fedora Workstation 30: How to Install GNS3 on Fedora 29 / Fedora 28

Related tools/softwares

>>> Cisco Packet Tracer

>>> eve-NG

Popular posts from this blog

Check and install php7.0-mbstring extention on Ubuntu 16.04 and Microsoft Windows

While learning Facebook SDK for PHP I overlooked one of system requirements preventing my code from running on my host. That is The mbstring extension. Facebook SDK for PHP's system requirements Check if mbstring is enabled root@ubuntu001:~# php -a Interactive mode enabled php > echo extension_loaded('mbstring'); php >exit root@ubuntu001:~# apt-cache search php7 | grep mbstring php7.0-mbstring - MBSTRING module for PHP root@ubuntu001:~# Install php7.0-mbstring root@ubuntu001:~# apt-get install php7.0-mbstring Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required:   fontconfig-config fonts-dejavu-core libfontconfig1 libgd3 libjbig0   libjpeg-turbo8 libjpeg8 libmcrypt4 libtiff5 libvpx3 libxpm4 Use 'apt autoremove' to remove them. The following additional packages will be installed:   libapache2-mod-php7.0 php7.0-cli ph...

Demistify Buffer Overflow Vulnerability

Collection of articles, blog posts, lectures, tutorials... about Buffer Overflow Vulnerability.

Powershell: Test-NetConnection

PS C:\Users\tuyen> get-help Test-NetConnection NAME     Test-NetConnection SYNTAX     Test-NetConnection [[-ComputerName] <string>] [-TraceRoute] [-Hops <int>] [-InformationLevel {Quiet |     Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] [-CommonTCPPort] {HTTP | RDP | SMB | WINRM}     [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -Port <int> [-InformationLevel {Quiet | Detailed}]     [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -DiagnoseRouting [-ConstrainSourceAddress <string>]     [-ConstrainInterface <uint32>] [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>] ALIASES     TNC REMARKS     Get-Help cannot find the Help files fo...