直接接続されたネットワークの再配布 OSPF RIP

直接接続されたネットワークの再配布 OSPF RIP

RIP と OSPF 間の再配布を学習しようとしています。パケット トレーサーを使用しています。 で設定されているルータ BRANCH が 1 台ありますRIP v2。fa0/0 にはネットワーク があり172.16.56.0/25、fa0/1 にはネットワークがあります172.16.54.0/23。BRANCH はシリアル リンク経由で HM ルータ (ネットワーク172.16.56.128/30) に接続されています。HM ルータは再配布を処理する必要があります。fa0/1 経由で直接接続されている HM には、172.16.53.0/25OSPF エリアにあるネットワーク ( ) がありますが、BRANCH は RIP 経由でそのネットワークを認識しています。どうすればこれを回避できますか? これは集約に関連しているのではないかと思います。HM には、192.168.8.192/28OSPF 経由で学習された Fa0/0 に接続された別のネットワーク ( ) があるためです。両方のルータで「no auto-summary」を発行しましたが、それでもこの問題が発生します。どなたか助けていただけますか? ありがとうございます

BRANCHのルート表はこちら

     172.16.0.0/16 is variably subnetted, 8 subnets, 5 masks
R       172.16.48.1/32 [120/14] via 172.16.56.129, 00:00:08, Serial0/0/1
R       172.16.52.0/24 [120/14] via 172.16.56.129, 00:00:08, Serial0/0/1
R       172.16.53.0/25 [120/1] via 172.16.56.129, 00:00:08, Serial0/0/1  //PROBLEM
R       172.16.53.128/30 [120/14] via 172.16.56.129, 00:00:08, Serial0/0/1
R       172.16.53.132/30 [120/1] via 172.16.56.129, 00:00:08, Serial0/0/1
C       172.16.54.0/23 is directly connected, FastEthernet0/0
C       172.16.56.0/25 is directly connected, FastEthernet0/1
C       172.16.56.128/30 is directly connected, Serial0/0/1
     192.168.8.0/24 is variably subnetted, 2 subnets, 2 masks
R       192.168.8.0/24 is possibly down, routing via 172.16.56.129, Serial0/0/1
R       192.168.8.192/28 [120/14] via 172.16.56.129, 00:00:08, Serial0/0/1
R*   0.0.0.0/0 [120/14] via 172.16.56.129, 00:00:08, Serial0/0/1

メトリック 14 のルートが再配布されます。HM:

     172.16.0.0/16 is variably subnetted, 8 subnets, 5 masks
O       172.16.48.1/32 [110/129] via 172.16.53.133, 01:25:54, Serial0/0/0
O       172.16.52.0/24 [110/129] via 172.16.53.133, 01:25:54, Serial0/0/0
C       172.16.53.0/25 is directly connected, FastEthernet0/1
O       172.16.53.128/30 [110/128] via 172.16.53.133, 01:26:04, Serial0/0/0
C       172.16.53.132/30 is directly connected, Serial0/0/0
R       172.16.54.0/23 [120/1] via 172.16.56.130, 00:00:09, Serial0/0/1
R       172.16.56.0/25 [120/1] via 172.16.56.130, 00:00:09, Serial0/0/1
C       172.16.56.128/30 is directly connected, Serial0/0/1
     192.168.8.0/28 is subnetted, 1 subnets
C       192.168.8.192 is directly connected, FastEthernet0/0
O*E2 0.0.0.0/0 [110/1] via 172.16.53.133, 01:25:54, Serial0/0/0

トポロジー
よろしくお願いします!

答え1

使用する必要がありますリストを配布するこのアクションを実行します。ルータ BRANCH で次のアクションを実行します。

まず、アクセスリストを作成する

access-list 101 permit <Network You permit here> 
access-list 101 deny 172.16.53.0 0.0.0.128

次にRIPの配布リストを設定します

router rip
distribute-list 101 in Serial0/0/1

関連情報