web-dev-qa-db-ja.com

OSPF:QuaggaのBIRDへの移行

いくつかのQuaggaの一時的な中断の後、QuaggaからBIRDに移行する必要があります。つまり、 QuaggaはStretchでの更新後に動作を停止しました

BIRDは、より柔軟で最新のものでもあります。

QuaggaにOSPFBINDエニーキャスト構成があり、BIRDと同様の方法でOSPFサービスをセットアップしたいと思います。

何をすべきか?

僕の /etc/quagga/ospfd.confは:

!
! Zebra configuration saved from vty
!   2011/03/22 21:17:11
!
hostname dns
password 8 xxxxxxx
enable password 8 xxxxxxx
log stdout
service password-encryption
!
!
!
interface dummy0
 ip ospf cost 100
!
interface dummy1
 ip ospf cost 500
!
interface dummy2
 ip ospf cost 1000
!
interface dummy3
 ip ospf cost 900
!
interface eth0
 ip ospf authentication message-digest
 ip ospf message-digest-key 5 md5 MySecretPassword
 ip ospf cost 1000
!
interface eth1
 ip ospf cost 1000
!
interface lo
!
router ospf
 ospf router-id 1.1.1.1
 auto-cost reference-bandwidth 10000
 network 1.1.1.0/22 area 0.0.0.0
 network 2.2.2.2/32 area 0.0.0.0
 network 3.3.3.3/32 area 0.0.0.0
 network 4.4.4.4/32 area 0.0.0.0
 network 5.5.5.5/32 area 0.0.0.0
 area 0 filter-list prefix AREA_1_OUT out
!
ip prefix-list AREA_1_OUT seq 5 permit 2.2.2.2/32
ip prefix-list AREA_1_OUT seq 10 permit 3.3.3.3/32
ip prefix-list AREA_1_OUT seq 15 permit 4.4.4.4/32
ip prefix-list AREA_1_OUT seq 20 permit 5.5.5.5/32
ip prefix-list AREA_1_OUT seq 25 deny any
!
line vty
!
3
Rui F Ribeiro

ここで説明されている問題を解決した後 QuaggaからBIRDへのOSPF md5暗号化 および BIRDでのOSPFルートコスト では、残りの移行は比較的簡単です。

同等のサービスを受けるための手順は次のとおりです。

Sudo dpkg --purge quagga
Sudo apt-get install bird
Sudo chkconfig bird6 off
Sudo service bird6 stop

次に、/etc/bird/bird.confに次のようにセットアップを作成する必要があります。

#
router id 1.1.1.1;

# The Device protocol is not a real routing protocol. It doesn't generate any
# routes and it only serves as a module for getting information about network
# interfaces from the kernel.
protocol device {
    scan time 10;
}

protocol ospf {
        tick 2;
        rfc1583compat yes;

        area 0.0.0.0 {

            networks {
                1.1.1.0/22;
            };
            stubnet 2.2.2.2/32 {
                 cost 100;
            };
            stubnet 3.3.3.3/32 {
                 cost 500;  
            };
            stubnet 4.4.4.4/32 {
                 cost 1000;
            };
            stubnet 5.5.5.5/32 {
                 cost 900;
            };
            interface "eth0" {
                cost 1000;
                password "MySecretPassword" {
                    id 5;
                };
                authentication cryptographic; 
            };

            interface "dummy0" {
                stub;
            };
            interface "dummy1" {
                stub;
            };
            interface "dummy2" {
                stub;
            };
            interface "dummy3" {
                stub;
            };

        };
}

構成を変更した後:

Sudo service bird restart

ローカルサーバーでサービスを確認するには:

Sudo birdc

その後

show status

そして

show ospf 

そして

show ospf state

そして

show ospf neighbors

P.S.私は簡単な文書を見つけられず、Quaggaが共存してBIRDに移行することについてあまり見つけられなかったので、ここで文書化することにしました。

両方の構成が類似しており、(明らかにOSPFプロトコルを介して)相互に通信するため、すべてのQuaggaサーバー/ OSPFノードを一度に移行しませんでした。

参照 BIRDのOSPFインポートルートフィルター

3
Rui F Ribeiro