私はQuaggaからBIRDに移行しています。ただし、設定後、他のOSPF「ルーター」は私を認識しません。
MD5ディレクティブを正しく設定していないと思います。
Quaggaでの私の同様の設定は次のとおりです。
ip ospf authentication message-digest
ip ospf message-digest-key 5 md5 SecreTPassword
BIRDで私はしました:
area 0.0.0.0 {
...
interface "eth0" {
cost 1000;
password "SecreTPassword";
authentication cryptographic;
};
...
};
なにが問題ですか?
MD5ダイジェスト認証キー(5)を忘れたため、機能しませんでした。
area 0.0.0.0 {
...
interface "eth0" {
cost 1000;
password "SecreTPassword" {
id 5;
};
authentication cryptographic;
};
...
};
セットアップしてBIRDを再起動すると、他のOSPF対応ルーターがOSPFネイバーリストにBIRDルーターのリストを開始します。