Quảng bá đúng subnetmask của các interface loopback.
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
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
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?