quagga的安装和使用


Quagga软件原名是Zebra是由一个日本开发团队编写的一个以GNU版权方式发布的软件

1.下载源码并编译安装:

1
2
3
4
[root@centos code]# git clone https://gitee.com/opensi/quagga.git
[root@centos code]# cd quagga/
[root@centos code]# ./configure --enable-tcp-zebra --enable-mpls --enable-ldpd --enable-vtysh --enable-user=root --enable-group=root --enable-vty-group=root
[root@centos quagga]# make && make install

2.复制配置文件到quagga默认配置目录下

1
2
3
[root@centos quagga]# cp zebra/zebra.conf.sample /usr/local/etc/
[root@centos quagga]# cp ospfd/ospfd.conf.sample /usr/local/etc/
[root@centos quagga]# cp ldpd/ldpd.conf.sample /usr/local/etc/

3.启动相关进程

1
2
3
[root@centos quagga]# zebra -d
[root@centos quagga]# ospfd -d
[root@centos quagga]# ldpd -d

tips:
1、如果vmware无法ping通windows,但是windows可以ping通vware虚拟机,需要关闭windows防火墙
2、如果zebra收到报文但是ospf无法建立,需要关闭系统防火墙

参考文章:

Linux上实现mpls,ldpd(Quagga)完整步骤


文章作者: shigc
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 shigc !
  目录