Cisco VPP入门(一)——VPP源码编译与安装
·
VPP是Cisco开源的路由工程,支持如下网络功能:
我的系统是Ubuntu 14.04,使用VPP1606分支代码进行编译安装
1、下载源码
git clone -b stable/1606 https://github.com/FDio/vpp.git
2、编译
进入目录并且安装依赖文件
#cd vpp
# make install-dep
生成Makefile
#cd vpp/build-root
#make distclean
#./bootstrap.sh
进行编译
#make V=0 PLATFORM=vpp TAG=vpp install-deb
如果是CentOS系统,使用如下命令编译
#make V=0 PLATFORM=vpp TAG=vpp install-rpm
安装
#dpkg -i *.deb
如果是CentOS系统,使用rpm –ivh *.rpm 来安装
如果编译过程中报autoreconf not found的错误,使用apt-get install autoconf安装autoreconf工具
更多推荐
已为社区贡献3条内容
所有评论(0)