Installation de GNS3

Installation de GNS3.
Configuration matériel :

CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ (2200 MHz)
Memory: 1999 MB
OS Version: Linux 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64
Graphics Card Vendor: NVIDIA Corporation
Graphics Card: GeForce 7650 GS/PCIe/SSE2
OpenGL Version: 2.1.2 NVIDIA 304.131

Distribution de travail :

Ubuntu 15.04 64bits

1/ Installation des dépendances Python pour GNS3 :

util01@station33:~$ sudo apt-get install python3-dev
util01@station33:~$ sudo apt-get install python3-setuptools
util01@station33:~$ sudo apt-get install python3-pyqt4
util01@station33:~$ sudo apt‐get install python3‐netifaces
util01@station33:~$ sudo apt-get install python3-ws4py

2/ Installation des dépendances pour Dynmips :

util01@station33:~$ sudo apt-get install cmake
util01@station33:~$ sudo apt-get install uuid-dev
util01@station33:~$ sudo apt-get install libcap-dev
util01@station33:~$ sudo apt-get install libelf-dev

3/ Répertoire de travail :

util01@station33:~$ mkdir -p VIRTUALISATION/GNS3
util01@station33:~$ cd VIRTUALISATION/GNS3/
util01@station33:~/VIRTUALISATION/GNS3$

4/ Téléchargement des codes sources :

util01@station33:~/VIRTUALISATION/GNS3$ wget https://github.com/GNS3/gns3-gui/releases/download/v1.3.13/GNS3-1.3.13.source.zip
util01@station33:~/VIRTUALISATION/GNS3$ unzip GNS3-1.3.13.source.zip
Archive:  GNS3-1.3.13.source.zip
 extracting: dynamips-0.2.14.zip
 extracting: iouyap-0.97.zip
 extracting: ubridge-0.9.0.zip
 extracting: vpcs-0.6.1.zip
 extracting: gns3-server-1.3.13.zip
 extracting: gns3-gui-1.3.13.zip

5/ Installation de Dynamips :

util01@station33:~/VIRTUALISATION/GNS3$ unzip dynamips-0.2.14.zip
util01@station33:~/VIRTUALISATION/GNS3$ cd dynamips-0.2.14/
util01@station33:~/VIRTUALISATION/GNS3/dynamips-0.2.14$
util01@station33:~/VIRTUALISATION/GNS3/dynamips-0.2.14$ mkdir build
util01@station33:~/VIRTUALISATION/GNS3/dynamips-0.2.14$ cd build/
util01@station33:~/VIRTUALISATION/GNS3/dynamips-0.2.14/build$ cmake ..
util01@station33:~/VIRTUALISATION/GNS3/dynamips-0.2.14/build$ make
util01@station33:~/VIRTUALISATION/GNS3/dynamips-0.2.14/build$ sudo make install
util01@station33:~/VIRTUALISATION/GNS3/dynamips-0.2.14/build$ sudo setcap cap_net_admin,cap_net_raw=ep /usr/local/bin/dynamips
util01@station33:~/VIRTUALISATION/GNS3/dynamips-0.2.14/build$ cd ../..

6/ Installation de GNS3 Server :

util01@station33:~/VIRTUALISATION/GNS3$ unzip gns3-server-1.3.13.zip
util01@station33:~/VIRTUALISATION/GNS3$ cd gns3-server-1.3.13/
util01@station33:~/VIRTUALISATION/GNS3/gns3-server-1.3.13$ sudo python3 setup.py install
util01@station33:~/VIRTUALISATION/GNS3/gns3-server-1.3.13$ cd ..
util01@station33:~/VIRTUALISATION/GNS3$

7/ Installation de GNS3 Gui :

util01@station33:~/VIRTUALISATION/GNS3$ unzip gns3-gui-1.3.13.zip
util01@station33:~/VIRTUALISATION/GNS3$ cd gns3-gui-1.3.13/
util01@station33:~/VIRTUALISATION/GNS3/gns3-gui-1.3.13$ sudo python3 setup.py install
util01@station33:~/VIRTUALISATION/GNS3/gns3-gui-1.3.13$ cd ..

8/ Installation de VPCS :

util01@station33:~/VIRTUALISATION/GNS3$ unzip vpcs-0.6.1.zip
util01@station33:~/VIRTUALISATION/GNS3$ cd vpcs-0.6.1/src/
util01@station33:~/VIRTUALISATION/GNS3/vpcs-0.6.1/src$ ./mk.sh
util01@station33:~/VIRTUALISATION/GNS3/vpcs-0.6.1/src$ sudo cp vpcs /usr/local/bin/
util01@station33:~/VIRTUALISATION/GNS3/vpcs-0.6.1/src$ cd ../..
util01@station33:~/VIRTUALISATION/GNS3$

9/ Installation de ubridge :

util01@station33:~/VIRTUALISATION/GNS3$ sudo apt-get install libpcap-dev
util01@station33:~/VIRTUALISATION/GNS3$ unzip ubridge-0.9.0.zip
util01@station33:~/VIRTUALISATION/GNS3$ cd ubridge-0.9.0/
util01@station33:~/VIRTUALISATION/GNS3/ubridge-0.9.0$ make
util01@station33:~/VIRTUALISATION/GNS3/ubridge-0.9.0$ sudo make install
util01@station33:~/VIRTUALISATION/GNS3/ubridge-0.9.0$ cd ..
util01@station33:~/VIRTUALISATION/GNS3$

10/ Installation de IOUAPP :

util01@station33:~/VIRTUALISATION/GNS3$ unzip iouyap-0.97.zip
util01@station33:~/VIRTUALISATION/GNS3$ cd iouyap-0.97/
util01@station33:~/VIRTUALISATION/GNS3/iouyap-0.97$ make
util01@station33:~/VIRTUALISATION/GNS3/iouyap-0.97$ sudo make install
util01@station33:~/VIRTUALISATION/GNS3/iouyap-0.97$ cd ..
util01@station33:~/VIRTUALISATION/GNS3$

11/ Installation de Python Cryptography :

util01@station33:~/VIRTUALISATION/GNS3$ sudo apt-get install libssl-dev libffi-dev
util01@station33:~/VIRTUALISATION/GNS3$ git clone https://github.com/pyca/cryptography.git
util01@station33:~/VIRTUALISATION/GNS3$ cd cryptography/
util01@station33:~/VIRTUALISATION/GNS3/cryptography$ sudo python3 setup.py install
util01@station33:~/VIRTUALISATION/GNS3/cryptography$ cd ..

12/ Installation de cffi :

util01@station33:~/VIRTUALISATION/GNS3$ hg clone https://bitbucket.org/cffi/cffi
util01@station33:~/VIRTUALISATION/GNS3$ cd cffi/
util01@station33:~/VIRTUALISATION/GNS3/cffi$ sudo python3 setup.py install
util01@station33:~/VIRTUALISATION/GNS3$ cd
util01@station33:~$

13/ Installation des outils réseaux :

util01@station33:~/VIRTUALISATION/GNS3$  sudo apt-get install wireshark cpulimit
util01@station33:~/VIRTUALISATION/GNS3$ cd
util01@station33:~$

14/ Lancement de GNS3 :

util01@station33:~$ gns3

Capture du 2016-08-19 12-05-05
15/ Liens :
https://gns3.com/discussions/how-to-install-gns3-1-3-7-on-ubu

Comments are closed, but trackbacks and pingbacks are open.