码迷,mamicode.com
首页 > 系统相关 > 详细

LINUX下安装Quagga

时间:2014-09-26 00:49:19      阅读:836      评论:0      收藏:0      [点我收藏+]

标签:linux   路由器   

考虑到quagga能模拟cisco路由器效果 所以安装使用体验下效果

 

对应的官方使用文档:

http://www.nongnu.org/quagga/docs/docs-info.html#VTY-shell-integrated-configuration

下载最新版本quagga-0.99.17.tar.gz

 

  • 安装过程:

[root@nagios quagga-0.99.17]# ./configure --prefix=/etc/quagga --disable-ipv6 --enable-user=root --enable-group=root --enable-vty-group=root  -enable-vtysh --with-libpam

[root@nagios quagga-0.99.17]# make

[root@nagios quagga-0.99.17]# make install

[root@nagios ~]#  cd /etc/quagga/etc
[root@nagios etc]#  cp zebra.conf.sample  zebra.conf

变更/etc/service文件

zebrasrv      2600/tcp            # zebra service
zebra         2601/tcp            # zebra vty
ripd          2602/tcp            # RIPd vty
ripngd        2603/tcp            # RIPngd vty
ospfd         2604/tcp            # OSPFd vty
bgpd          2605/tcp            # BGPd vty
ospf6d        2606/tcp            # OSPF6d vty
ospfapi       2607/tcp            # ospfapi
isisd         2608/tcp            # ISISd vty

 

  • 运行方式:

[root@nagios etc]#   /etc/quagga/sbin/zebra -h
Usage : zebra [OPTION...]

Daemon which manages kernel routing table management and redistribution between different routing protocols.

-b, --batch        Runs in batch mode
-d, --daemon       Runs in daemon mode
-f, --config_file  Set configuration file name
-i, --pid_file     Set process ide

[root@nagios etc]#  /etc/quagga/sbin/zebra -d
[root@nagios etc]#   ps -ef | grep zebra
root     27881     1  0 16:13 ?        00:00:00 /etc/quagga/sbin/zebra -d

 

  • 使用方式: telnet 127.0.0.1 2601  (密码在zebra.conf文件内)

 telnet 127.0.0.1 2601
Trying 127.0.0.1...
Connected to nagios.JF.com (127.0.0.1).
Escape character is ‘^]‘.

Hello, this is Quagga (version 0.99.17).
Copyright 1996-2005 Kunihiro Ishiguro, et al.


User Access Verification

Password:
Router> en
Password:
Router#

bubuko.com,布布扣

 

试验环境做两台测试环境

 

服务启动方式

bubuko.com,布布扣

 

注:

  管理接口telnet 127.0.0.1 2601

  RIP进程  telnet 127.0.0.1 2602

 ospf 进程 telnet 127.0.0.1 2604

 

后续使用cisco设备经验操作即可;该设备路由更新可以做到动态解决内核所有路由问题。

LINUX下安装Quagga

标签:linux   路由器   

原文地址:http://2824185.blog.51cto.com/2814185/1558157

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!