بحث هذه المدونة الإلكترونية

الخميس، ٨ سبتمبر ٢٠١١

routing feedback loop


بسم الله والحمد لله والصلاة والسلام علي رسول الله وآله وصحبه وإخوانه وسلم


Routing Feedback Loop

 هي لوب تحدث في الغالب علي الـ ASBRs، أي الراوترات التي تقوم بتشغيل أكثر من Routing Protocol في نفس الوقت وتقوم أيضاً بعمل Redistribution  بينهم، هنا إذا عرف ASBR طريق Route لشبكة معينة من البروتوكولين معاً وفي حالة تساوي الـSubnet Mask، هنا يقوم باستخدام الأقل في الـAdministrative Distance بغض النظر عن مدي مصداقية هذا الـRoute، علي سبيل المثال:
 
R2#sho ip route
Gateway of last resort is not set

     192.168.10.0/30 is subnetted, 3 subnets
C       192.168.10.8 is directly connected, Serial0/0
O       192.168.10.12 [110/192] via 192.168.10.10, 00:01:27, Serial0/0
O       192.168.10.16 [110/128] via 192.168.10.10, 00:01:27, Serial0/0
     172.16.0.0/30 is subnetted, 2 subnets
O E2    172.16.1.4 [110/20] via 192.168.10.10, 00:01:27, Serial0/0
C       172.16.1.0 is directly connected, Serial0/2
O E2 192.168.1.0/24 [110/20] via 192.168.10.10, 00:01:14, Serial0/0
هنا نلاحظ أن R2  يستخدم دومين الـOSPF للوصول إلي شبكة 192.168.1.0 وذلك لأن الـAD أقل من الـRIP 
 هنا نقوم بعمل Route-map لمنع إستقبال أي updates عن 192.168.1.0 من دومين الـOSPf.
R2#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R2(config)#access-list 1 permit 192.168.1.0 0.0.0.255
R2(config)#route-map ospf_into_rip deny 10
R2(config-route-map)#match ip address 1
R2(config-route-map)#exit
R2(config)#route-map ospf_into_rip permit 20
R2(config-route-map)#exit
R2(config)#router rip
R2(config-router)#redistribute ospf 100 route-map ospf_into_rip
R2(config-router)#exit
   R2(config)#router ospf 100
R2(config-router)#redistribute rip subnets
R2#clear ip ospf process    
Reset ALL OSPF processes? [no]: y
R2#sho ip route
Gateway of last resort is not set
     192.168.10.0/30 is subnetted, 1 subnets
C       192.168.10.8 is directly connected, Serial0/0
     172.16.0.0/30 is subnetted, 2 subnets
R       172.16.1.4 [120/1] via 172.16.1.1, 00:00:00, Serial0/2
C       172.16.1.0 is directly connected, Serial0/2
R    192.168.1.0/24 [120/1] via 172.16.1.1, 00:00:00, Serial0/2

ولا تنسوني والمسلمين من صالح الدعاء

وصلي الله وسلم وبارك علي المصطفي وآله وصحبه وإخوانه وسلم