我的编程空间,编程开发者的网络收藏夹
学习永远不晚

CentOS6.5 安装GNS3

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

CentOS6.5 安装GNS3

实验所需软件下载地址:http://down.51cto.com/data/2092966


1、实验环境

[root@CentOS1 ~]# head -1 /etc/issue

CentOS release 6.5 (Final)

[root@CentOS1 ~]# uname -r

2.6.32-431.el6.i686


2、准备工作

2.1、安装图形界面

yum -y groupinstall "Desktop"

yum -y groupinstall "X Window System"

yum -y groupinstall "Chinese Support" 

startx

2.2、安装VNC

yum -y install tigervnc*

vncserver :1


3、安装依赖包

yum -y install PyQt4 sip python qt qt-x11


4、安装dynamips

[root@CentOS1 class="lazy" data-src]# ls

c3640-jk9o3s-mz.124-7a.bin  dynamips-0.2.8-RC3-community.tar.gz  GNS3-0.8.3.1-class="lazy" data-src.tar.gz

[root@CentOS1 class="lazy" data-src]# tar zxvf dynamips-0.2.8-RC3-community.tar.gz

[root@CentOS1 class="lazy" data-src]# cd dynamips-0.2.8-RC3-community

[root@CentOS1 dynamips-0.2.8-RC3-community]# make

make -C stable

make[1]: Entering directory `/usr/local/class="lazy" data-src/dynamips-0.2.8-RC3-community/stable'

Linking rom2c

make[1]: cc: Command not found

make[1]: *** [rom2c] Error 127

make[1]: Leaving directory `/usr/local/class="lazy" data-src/dynamips-0.2.8-RC3-community/stable'

make: *** [dynamips.stable] Error 2

[root@CentOS1 dynamips-0.2.8-RC3-community]# yum -y install gcc

[root@CentOS1 dynamips-0.2.8-RC3-community]# make

make -C stable

make[1]: Entering directory `/usr/local/class="lazy" data-src/dynamips-0.2.8-RC3-community/stable'

Linking rom2c

cc: /usr/lib/libelf.a: No such file or directory

../common/rom2c.c:16:20: error: libelf.h: No such file or directory

../common/rom2c.c: In function ‘main’:

../common/rom2c.c:25: error: ‘Elf32_Ehdr’ undeclared (first use in this function)

../common/rom2c.c:25: error: (Each undeclared identifier is reported only once

../common/rom2c.c:25: error: for each function it appears in.)

../common/rom2c.c:25: error: ‘ehdr’ undeclared (first use in this function)

../common/rom2c.c:26: error: ‘Elf32_Phdr’ undeclared (first use in this function)

../common/rom2c.c:26: error: ‘phdr’ undeclared (first use in this function)

../common/rom2c.c:27: error: ‘Elf’ undeclared (first use in this function)

../common/rom2c.c:27: error: ‘img_elf’ undeclared (first use in this function)

../common/rom2c.c:42: warning: implicit declaration of function ‘elf_version’

../common/rom2c.c:42: error: ‘EV_CURRENT’ undeclared (first use in this function)

../common/rom2c.c:42: error: ‘EV_NONE’ undeclared (first use in this function)

../common/rom2c.c:47: warning: implicit declaration of function ‘elf_begin’

../common/rom2c.c:47: error: ‘ELF_C_READ’ undeclared (first use in this function)

../common/rom2c.c:49: warning: implicit declaration of function ‘elf_errmsg’

../common/rom2c.c:49: warning: implicit declaration of function ‘elf_errno’

../common/rom2c.c:49: warning: format ‘%s’ expects type ‘char *’, but argument 3 has type ‘int’

../common/rom2c.c:53: warning: implicit declaration of function ‘elf32_getphdr’

../common/rom2c.c:55: warning: format ‘%s’ expects type ‘char *’, but argument 3 has type ‘int’

../common/rom2c.c:64: warning: implicit declaration of function ‘elf32_getehdr’

make[1]: *** [rom2c] Error 1

make[1]: Leaving directory `/usr/local/class="lazy" data-src/dynamips-0.2.8-RC3-community/stable'

make: *** [dynamips.stable] Error 2

[root@CentOS1 dynamips-0.2.8-RC3-community]# yum -y install elfutils*

[root@CentOS1 dynamips-0.2.8-RC3-community]# make

make -C stable

make[1]: Entering directory `/usr/local/class="lazy" data-src/dynamips-0.2.8-RC3-community/stable'

Linking rom2c

/usr/bin/ld: cannot find -luuid

collect2: ld returned 1 exit status

make[1]: *** [rom2c] Error 1

make[1]: Leaving directory `/usr/local/class="lazy" data-src/dynamips-0.2.8-RC3-community/stable'

make: *** [dynamips.stable] Error 2

[root@CentOS1 dynamips-0.2.8-RC3-community]# yum -y install libuuid*

[root@CentOS1 dynamips-0.2.8-RC3-community]# make

make -C stable

make[1]: Entering directory `/usr/local/class="lazy" data-src/dynamips-0.2.8-RC3-community/stable'

Linking rom2c

/usr/bin/ld: cannot find -lpcap

collect2: ld returned 1 exit status

make[1]: *** [rom2c] Error 1

make[1]: Leaving directory `/usr/local/class="lazy" data-src/dynamips-0.2.8-RC3-community/stable'

make: *** [dynamips.stable] Error 2

[root@CentOS1 dynamips-0.2.8-RC3-community]# yum -y install libpcap*

[root@CentOS1 dynamips-0.2.8-RC3-community]# make && make install

(若为64位系统,先执行export DYNAMIPS_LIB=lib64和export DYNAMIPS_ARCH=amd64在make&&make install )


5、安装GNS3

[root@CentOS1 class="lazy" data-src]# tar zxvf GNS3-0.8.3.1-class="lazy" data-src.tar.gz 

[root@CentOS1 class="lazy" data-src]# cd GNS3-0.8.3.1-class="lazy" data-src

[root@CentOS1 GNS3-0.8.3.1-class="lazy" data-src]# python setup.py install


6、启动GNS3

6.1、添加IOS镜像

wKiom1XylEHBKKAtAAQBQnlrp8s820.jpg

wKioL1XylnGTB2qCAASFKKb60c4907.jpg


6.2、测试dynamips

wKioL1XylpLQK_4rAAP7_c7yvU0348.jpg

wKiom1XylGTwHNHyAAR8CHdrcKw752.jpg



6.3、添加设备

wKioL1XylrKi74aOAARl_ANQ01Y591.jpg

注释掉下面两行,重启GNS3即可

[root@CentOS1 GNS3-0.8.3.1-class="lazy" data-src]# vim /usr/lib/python2.6/site-packages/GNS3/Node/AbstractNode.py

 62         #if QtCore.QT_VERSION >= 0x040600:

 63         #    flags = flags | self.ItemSendsGeometryChanges


6.4、设置配置终端

wKiom1XyliSg6Rd8AAQUAEt_E-8880.jpg

wKioL1XymFTjjsv7AATekwctV4Y648.jpg



免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

CentOS6.5 安装GNS3

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

CentOS6.5 安装GNS3

实验所需软件下载地址:http://down.51cto.com/data/2092966 1、实验环境[root@CentOS1 ~]# head -1 /etc/issueCentOS release 6.5 (Final)[root@
2023-01-31

CentOS6.5 安装 MongoDB

1、下载MongoDB http://www.mongodb.org/downloads mongodb-linux-x86_64-3.6.3.tgz  #目前最新版是4.0.0   2、建议关闭selinux [root@mycentos ~]# vi /e
CentOS6.5 安装 MongoDB
2018-08-28

CentOS6.5安装python2.7

以前一直用ubantu下的python,ubantu比较卡。自己倾向于使用centos,但默认的python版本太低,所以重新装了一个python和ipythoncentos6.5安装python2.7.9第一步:安装devtoolset[
2023-01-31

CentOS6.5 安装Python3.

1、CentOS6.5 安装Python 的依赖包yum groupinstall "Development tools"yum install  gcc zlib-devel bzip2-devel openssl-devel ncurs
2023-01-31

ubuntu安装 gns3

GNS3模拟器应用视频教程-如何在Ubuntu中安装GNS3模拟器2/1在线观看:     http://itboba.com/v/itbb0463/GNS3模拟器应用视频教程-如何在Ubuntu中安装GNS3模拟器2/2在线观看:    
2023-01-31

gns3安装问题

安装gns3(版本GNS3-0.6.1-win32-all-in-one)折腾了我很久,重装不止十次(包括不同版本),找了安装视频教程和pdf格式的安装说明手册来看,网上也找了遍,碰到的几个同样的原因,但也没有解决的方法,于是去逛了gns3
2023-01-31

CentOS6.5下安装Python3

1.安装下列所需的依赖包: gcc zlib zlib-devel readline-devel# yum install zlib-devel# yum install readline-devel注:readline-devel包用于解
2023-01-31

CentOS6.5怎么安装jdk1.8

本篇内容介绍了“CentOS6.5怎么安装jdk1.8”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1、源码包准备:首先从官网上下载jdk-
2023-06-05

centos6.5如何安装git

这篇文章主要介绍了centos6.5如何安装git的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇centos6.5如何安装git文章都会有所收获,下面我们一起来看看吧。步骤 1:检查依赖项使用yum包管理器可以
2023-07-05

CentOS6.5升级安装Python

目前服务器的系统是CENTOS6.5版本镜像,已有软件是在Python2.7.5默认环境中运行,但是由于有一个新的工具脚本需要在Python3.x版本中运行,这里需要将当前服务器中的Python进行升级,但是也为了确保已有的2.x版本不变,
2023-01-31

centos6.5下安装OpenCV+P

Python调用opencv的原理是:opencv编译出共享库文件,python把这个共享库文件作为一个模块加载并使用。通俗点就是,编译opencv的时候开启python接口选项,编译好了会产生cv2.so(linux下)或者cv2.pyd
2023-01-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录