1. Yêu cầu
- Chạy định tuyến OSPF giữa các router.
- Định tuyến BGP theo hình 4.1, đảm bảo mạng hội tụ.
Bước 1: Sau khi đặt IP như hình 4.1, ta chạy định tuyến OSPF trên các router.
R1
router ospf 1
network 1.1.1.0 0.0.0.255 area 0
network 192.168.12.0 0.0.0.255 area 0
network 192.168.13.0 0.0.0.255 area 0
R2
router ospf 1
network 2.2.2.0 0.0.0.255 area 0
network 192.168.12.0 0.0.0.255 area 0
network 192.168.13.0 0.0.0.255 area 0
Quảng bá đúng subnetmask cho các interface loopback:
R1
interface Loopback1
ip address 1.1.1.1 255.255.255.0
ip ospf network point-to-point
R2
interface Loopback2
ip address 2.2.2.2 255.255.255.0
ip ospf network point-to-point
Bước 2: Định tuyến BGP.
R1
router bgp 1
no synchronization
bgp log-neighbor-changes
network 1.1.1.0 mask 255.255.255.0
neighbor 2.2.2.2 remote-as 2
neighbor 2.2.2.2 ebgp-multihop 2
neighbor 2.2.2.2 update-source Loopback1
no auto-summary
R2
router bgp 2
no synchronization
bgp log-neighbor-changes
network 2.2.2.0 mask 255.255.255.0
neighbor 1.1.1.1 remote-as 1
neighbor 1.1.1.1 ebgp-multihop 2
neighbor 1.1.1.1 update-source Loopback2
no auto-summary
Bước 3: Quan sát sự thay đổi của bảng định tuyến với các route 1.1.1.0/24 và 2.2.2.0/24.
Thực hiện quan sát bảng định tuyến của các router R1 và R2, ta sẽ thấy các router R1 và R2 học các mạng loopback của nhau khi thì bằng BGP, khi thì bằng OSPF.
Hãy giải thích trường hợp này?