设为首页 收藏本站
查看: 340|回复: 0

[经验分享] How To Install GNS3 on Centos/Redhat/Fedora .

[复制链接]

尚未签到

发表于 2018-5-13 09:26:49 | 显示全部楼层 |阅读模式
  You won't find detailed instructions for GNS3 installation on Centos/Redhat/Fedora over the net, So I decided to make one for our certcollection members. Installing GNS3 on Centos/Redhat/Fedora can be very tedious task. But If you follow my Steps given below you can setup and run GNS3 without any difficulty. Since Qt 4.5.1 binary which is required for GNS3 is not available for these OS's, we'll have to compile it from the source.
IMP:: Installation of all this packages will take a lot of time. So do it when you are free.
OK lets roll
First we'll have to install dependencies
[user@admin ~]$ su
Password: (Type in your root password here)
[root@admin /]# yum install python python-devel xorg-x11-proto-devel libXext-devel
[root@admin /]# yum install gcc-c++
Now we'll download and install Qt4
[root@admin /]#cd /tmp
[root@admin tmp#wget http://ftp.uludag.org.tr/pub/source/2009/qt-x11-opensource-src-4.5.1.tar.gz
[root@admin tmp]#tar xzf qt-x11-opensource-src-4.5.1.tar.gz
[root@admin tmp]# cd qt-x11-opensource-src-4.5.1
[root@admin qt-x11-opensource-src-4.5.1]#./configure -nomake examples -nomake demos -qt-gif -no-exceptions -debug -qt3support
[root@admin qt-x11-opensource-src-4.5.1]#gmake <====This might take 2-3 hrs.
[root@admin qt-x11-opensource-src-4.5.1]#gmake install <====Another 30 mins or so
[root@admin qt-x11-opensource-src-4.5.1]#PATH=/usr/local/Trolltech/Qt-4.5.1/bin:$PATH
[root@admin qt-x11-opensource-src-4.5.1]#export PATH
Next we'll install SIP
[root@admin qt-x11-opensource-src-4.5.1]#cd ..
[root@admin tmp]#wget http://ftp.uludag.org.tr/pub/source/2009/sip-4.8.1.tar.gz
[root@admin tmp]#tar xzf sip-4.8.1.tar.gz
[root@admin tmp]#cd sip-4.8.1
[root@admin sip-4.8.1]#python configure.py
[root@admin sip-4.8.1]#make
[root@admin sip-4.8.1]#make install
Next we'll Install PyQt4
[root@admin sip-4.8.1]#cd ..
[root@admin tmp]#wget http://ftp.uludag.org.tr/pub/source/2009/PyQt-x11-gpl-4.5.2.tar.gz
[root@admin tmp]#tar xzf PyQt-x11-gpl-4.5.2.tar.gz
[root@admin tmp]#cd PyQt-x11-gpl-4.5.2
[root@admin PyQt-x11-gpl-4.5.2]#python configure.py
[root@admin PyQt-x11-gpl-4.5.2]#make <=====This will take 30-60 mins
[root@admin PyQt-x11-gpl-4.5.2]#make install
We are done with compiling part, now lets download GNS3 source files
[root@admin tmp]#cd /opt
[root@admin opt]#wget http://space.dl.sourceforge.net/project/gns-3/GNS3/0.7.2/GNS3-0.7.2-src.tar.bz2
[root@admin opt]#tar -xjvf GNS3-0.7.2-src.tar.bz2 && rm GNS3-0.7.2-src.tar.bz2
[root@admin opt]#mv GNS3-0.7.2-src /opt/GNS3
Create the following directories:
These directories will be used by GNS3 – such as projects – where your working projects will be stored, cache, temp, IOS images, etc.
[root@admin opt]#cd /opt/GNS3
[root@admin GNS3]#mkdir Dynamips
[root@admin GNS3]#mkdir IOS
[root@admin GNS3]#mkdir Project
[root@admin GNS3]#mkdir Cache
[root@admin GNS3]#mkdir tmp
[root@admin GNS3]#chmod o+rw -R ./Project
[root@admin GNS3]#chmod o+rw -R ./tmp
[root@admin GNS3]#chmod o+rw -R ./IOS
Download binary of dynamips and make it executable
[root@admin GNS3]#cd Dynamips
[root@admin Dynamips ]#wget http://www.ipflow.utc.fr/dynamips/dynamips-0.2.8-RC2-x86.bin
[root@admin Dynamips ]#chmod +x ./dynamips-0.2.8-RC2-x86.bin
IMP:: For 64-bit users
[root@admin Dynamips ]#wget http://www.ipflow.utc.fr/dynamips/dynamips-0.2.8-RC2-amd64.bin
[root@admin Dynamips ]#chmod +x ./dynamips-0.2.8-RC2-amd64.bin
You can create a desktop shortcut by right-clicking on the desktop and select “Create Launcher..”, Name it GNS3 and in the command section type in
python &quot;/opt/GNS3/gns3&quot;
Double click to open GNS3 and we will edit the default settings. If you don’t want to use desktop icons you can create a launcher from your programs menu by right clicking on the Main Menu, selecting Edit Menu. Select New Item on the right and you will be presented with the same window where you type in the above. From there you can move the launcher into any menu section of your choice.
Fire up GNS3
* Go to edit | preferences and in the ‘Terminal command:’ section type in:
gnome-terminal -t %d -e 'telnet %h %p' > /dev/null 2>&1 &
* Under ‘Paths’ change the ‘Project directory:’ to
/opt/GNS3/Project
and the ‘IOS/PIX directory:’ to
/opt/GNS3/IOS
* Click on Dynamips tab on the left
For the ‘Executable path:’ type in
/opt/GNS3/Dynamips/dynamips-0.2.8-RC2-x86.bin
* Change the ‘Working directory:’ to
/opt/GNS3/tmp
Click on the Capture tab on the left
* For the ‘Working directory for capture files:’ change it to
/opt/GNS3/Project
Imp:: When you want to stop the router, use right click stop on the router.
After you have done all that, you will be able to Open and Save your GNS3 projects properly and have an efficient setup for GNS3. In order to use the devices in GNS3 you must obtain our own IOS images from Cisco or http://networkingtips-tricks.blogspot.com/2010/03/cisco-ios-collection-for-gns3-and.html
Hope this tutorial will help you guys to setup and run GNS3 on your Linux system.
Just the right place to find a schadenfreude
Happy Learning

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-459381-1-1.html 上篇帖子: redhat 6.0 启用本地添加删除程序功能 下篇帖子: redhat配置centos5 yum
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表