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

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

Route Redistribution WithTags Lab


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

Route Redistribution WithTags Lab



Lab objectives:

1  1-   Enable routes at each side to be known by each routing protocol.


2  2-   Avoid routing-feedback loop.

 Download Lab file تحميل ملف اللاب


Download configuration تحميل الكونفجريشن   
 


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

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

Multi Point Route Redistribution Lab


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

Multi Point Route Redistribution Lab



يوجد العديد من النقاط تم تغطيتها في هذا اللاب علي النحو التالي:

Lab Objectives:

1-      Networks 192.168.10.0/30, 192.168.17.0  and 172.20.20.0/30 should not be advertised in OSPF domain.


R1#sho run
router ospf 100
 log-adjacency-changes
 redistribute rip subnets route-map RIP-TO-OSPF
!        
access-list 10 permit 192.168.10.0 0.0.0.3
access-list 10 permit 192.168.17.0 0.0.0.255
access-list 10 permit 172.20.20.0 0.0.0.3
!
route-map RIP-TO-OSPF deny 10
 match ip address 10
!        
route-map RIP-TO-OSPF permit 20
 set metric 5000
 set metric-type type-2


R3# the same configuration

R5#sho ip route
Gateway of last resort is not set
C    192.168.30.0/24 is directly connected, Loopback0
     172.16.0.0/30 is subnetted, 3 subnets
O       172.16.40.0 [110/129] via 172.16.30.1, 00:12:45, Serial0/0
C       172.16.30.0 is directly connected, Serial0/0
O       172.16.10.0 [110/65] via 172.16.30.1, 00:12:45, Serial0/0
O    192.168.20.0/24 [110/130] via 172.16.30.1, 00:12:45, Serial0/0
     10.0.0.0/30 is subnetted, 1 subnets
O E2    10.10.10.0 [110/5000] via 172.16.30.1, 00:07:19, Serial0/0
O E2 192.168.16.0/24 [110/5000] via 172.16.30.1, 00:07:19, Serial0/0
O E2 192.168.18.0/24 [110/5000] via 172.16.30.1, 00:07:19, Serial0/0

R6#sho ip route
Gateway of last resort is not set
O    192.168.30.0/24 [110/130] via 172.16.40.1, 00:08:12, Serial0/1
     172.16.0.0/30 is subnetted, 3 subnets
C       172.16.40.0 is directly connected, Serial0/1
O       172.16.30.0 [110/129] via 172.16.40.1, 00:08:12, Serial0/1
O       172.16.10.0 [110/65] via 172.16.40.1, 00:08:12, Serial0/1
C    192.168.20.0/24 is directly connected, Loopback0
     10.0.0.0/30 is subnetted, 1 subnets
O E2    10.10.10.0 [110/5000] via 172.16.40.1, 00:02:46, Serial0/1
O E2 192.168.16.0/24 [110/5000] via 172.16.40.1, 00:02:46, Serial0/1
O E2 192.168.18.0/24 [110/5000] via 172.16.40.1, 00:02:46, Serial0/1

2- R3 should use RIP to reach 10.10.10.0/30, no route-maps, distribute-lists or prefix-lists should be used.

R3(config)#router ospf 100
R3(config-router)#distance  ospf external 100 inter-area 100 intra-area 100
R3(config-router)#distance 100 10.10.10.0 0.0.0.3

R3(config-router)#do sho ip route
     10.0.0.0/30 is subnetted, 1 subnets
R       10.10.10.0 [120/1] via 172.20.20.1, 00:00:11, Serial1/0


3- 192.168.16.0/24 should be advertised in ospf with metric of 200 and metric type of 1.

R1#sho run
!
access-list 10 permit 192.168.10.0 0.0.0.3
access-list 10 permit 192.168.17.0 0.0.0.255
access-list 10 permit 172.20.20.0 0.0.0.3
access-list 20 permit 192.168.16.0 0.0.0.255
!        
route-map RIP-TO-OSPF deny 10
 match ip address 10
!        
route-map RIP-TO-OSPF permit 15
 match ip address 20
 set metric 200
 set metric-type type-1
!        
route-map RIP-TO-OSPF permit 20
 set metric 5000
 set metric-type type-2

R3# the same configuration

R3#sho ip route
O E1 192.168.16.0/24 [100/201] via 172.16.10.1, 00:04:18, FastEthernet0/0

R5#sho ip route
O E1 192.168.16.0/24 [110/264] via 172.16.30.1, 00:04:21, Serial0/0

R6#sho ip route
O E1 192.168.16.0/24 [110/265] via 172.16.40.1, 00:03:55, Serial0/1
 
4- Any other route redistributed in ospf should be redistributed with a metric of 5000 and type 2.
Included in question 2
5- Without redistributing ospf routes back into RIP, RIP domain routers should be able to reach any network in the ospf domain.

R1#sho run | sec rip
 redistribute rip subnets route-map RIP-TO-OSPF
router rip
 version 2
 passive-interface FastEthernet1/0
 network 192.168.10.0
 default-information originate

R3#sho run | sec rip
 redistribute rip subnets route-map RIP-TO-OSPF
router rip
 version 2
 passive-interface FastEthernet0/0
 network 172.20.0.0
 default-information originate
 no auto-summary

R2#sho ip route
R*   0.0.0.0/0 [120/1] via 192.168.10.1, 00:00:20, FastEthernet0/0

R4#sho ip route
R*   0.0.0.0/0 [120/1] via 172.20.20.2, 00:00:25, Serial1/0


لتحميل اللاب

 بسم الله 


 لتحميل الخطوات السابقة 


 بسم الله .docx
 بسم الله .pdf 


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


 

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

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

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

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

 

الجمعة، ٢ سبتمبر ٢٠١١

Route-Redistributiong GNS3 Lab File


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

وإخوانه وسلم

Route-Redistributiong GNS3 Lab File


Download التحميل

 مش شايفين بعض في "R1, R2 ,R6 " سؤال:  هل لاحظتم أن
 طيب ليه يا إخوة؟ شاركوني بإجاباتكم OSPFدومين الـ
 Why R1,R2 and R6 does not see each other as OSPF neighbors although they can bing each other????
participate in this discussion
ولا تنسوني والمسلمين من صالح الدعاء

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

الأربعاء، ٣١ أغسطس ٢٠١١

GNS3 WireShark Filters


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

وإخوانه وسلم

GNS3-WireShark-Filters

الفيديو ده بيتكلم عن طريقة استخدام الفلاتر المختلفة مع برنامج 

Wire Sharkالـ

وده لينك فيه كل أنواع الفلاتر اللي البرنامج بيدعمها



Download  التحميل
الجودة العالية


الجودة المتوسطة


الجودة المنخفضة



للمشاهدة المباشرة





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

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

الثلاثاء، ٢٣ أغسطس ٢٠١١

GNS3-0.8.0-VirtualBox فيديو عربي


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

وإخوانه وسلم

GNS3-0.8.0-VirtualBox 

فيديو عربي لطريقة التسطيب


Download التحميل

الجودة العالية

الجودة المتوسطة


الجودة المنخفضة



المشاهدة المباشرة


الجزء الأول





الجزء الثاني






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

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

وسلم

الجمعة، ١٢ أغسطس ٢٠١١

frame-relay-practical-lab فيديو عملي عربي


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

وإخوانه وسلم

frame-relay-practical-lab فيديو عملي عربي

 Production Netowrk الشرح من شبكة عملية 


Download  التحميل

بسم الله


المشاهدة المباشرة

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

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

الثلاثاء، ٩ أغسطس ٢٠١١

OSPF-Over-NBMA-Broadcast GNS3 Lab File


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

OSPF-Over-NBMA-Broadcast  GNS3 Lab File


Full Mesh التوبولوجي عبارة عن


NBMAفي شبكات الـ OSPFو ذلك لتطبيق الحالات المختلفة للـ
   
Download تحميل الملف


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

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

وسلم

الخميس، ٢٦ مايو ٢٠١١

فيديو عملي عربي CSU-DSU


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

CSU-DSU
فيديو عملي عربي


Download التحميل

الجودة العالية


الجودة المتوسطة


الجودة الضعيفة


المشاهدة المباشرة




شكر خاص للمهندس/أحمد أبو لابد الذي قام بالتصوير

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

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

الاثنين، ١٦ مايو ٢٠١١

vpcs 0.21a نسخة جديدة


بسم الله والحمد لله والصلاة والسلام على رسول الله وآله وصحبه 

وإخوانه وسلم

VPCS نسخة جديدة من برنامج 

VPCS 0.21a



الجديد في هذه النسخة

   0.21a   Fix IPv6 RS

Download التحميل 


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

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

السبت، ١٤ مايو ٢٠١١

CISCO 3D ICONS مجموعة أيقونات عادية وثلاثية الأبعاد للتصميم


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

 مجموعة أيقونات عادية وثلاثية الأبعاد للتصميم
Download التحميل


بسم الله

normal


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

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

الجمعة، ١٣ مايو ٢٠١١

Route-Summarizatio-assignment تدريبات


بسم الله والحمد لله والصلاة والسلام علي رسول الله وآله وصحبه 
وإخوانه وسلم
مجموعة تدريبات علي 
Route-Summarizatio-assignment 

Download التحميل


واستخدم هذا البرنامج البسيط للتأكد من الإجابة بإذن الله


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

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

الأحد، ١٧ أبريل ٢٠١١

OSPF Over Frame-relay Point-TO-Multipoint


بسم الله والحمد لله والصلاة والسلام على رسول الله وآله 

وصحبه وإخوانه ومن والاه...اللهم آمين 


OSPF Over Frame-relay Point-TO-Multipoint

R2#show run
Building configuration...

Current configuration : 1146 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R2
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
resource policy
!
memory-size iomem 5
ip subnet-zero
!
!
ip cef
no ip domain lookup       
!        
interface Loopback0
 ip address 192.168.1.3 255.255.255.0
!        
interface Serial0/0
 ip address 192.168.192.1 255.255.255.0
 encapsulation frame-relay
 ip ospf network point-to-multipoint
 serial restart-delay 0
 frame-relay map ip 192.168.192.2 102 broadcast
 frame-relay map ip 192.168.192.4 103 broadcast
!        
interface Serial0/1
 no ip address
 shutdown
 serial restart-delay 0
!        
interface Serial0/2
 no ip address
 shutdown
 serial restart-delay 0
!        
interface Serial0/3
 no ip address
 shutdown
 serial restart-delay 0
!        
router ospf 10
 log-adjacency-changes
 network 192.168.1.0 0.0.0.255 area 0
 network 192.168.192.0 0.0.0.255 area 0
!        
no ip http server
no ip http secure-server
!        
ip classless
!        
control-plane
!           
!        
end 


R3#show run
Building configuration...

Current configuration : 1150 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R3
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
resource policy
!
memory-size iomem 5
ip subnet-zero
!
!
ip cef
no ip domain lookup
!             
!        
interface Loopback0
 ip address 192.168.200.1 255.255.255.0
!        
interface Serial0/0
 no ip address
 shutdown
 serial restart-delay 0
!        
interface Serial0/1
 ip address 192.168.192.2 255.255.255.0
 encapsulation frame-relay
 ip ospf network point-to-multipoint
 serial restart-delay 0
 frame-relay map ip 192.168.192.1 201 broadcast
 frame-relay map ip 192.168.192.4 201 broadcast
!        
interface Serial0/2
 no ip address
 shutdown
 serial restart-delay 0
!        
interface Serial0/3
 no ip address
 shutdown
 serial restart-delay 0
!        
router ospf 10
 log-adjacency-changes
 network 192.168.192.0 0.0.0.255 area 0
 network 192.168.200.0 0.0.0.255 area 0
!        
no ip http server
no ip http secure-server
!        
ip classless
!              
!        
control-plane
!                
!        
end  


R4#show run
Building configuration...

Current configuration : 1150 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R4
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
resource policy
!
memory-size iomem 5
ip subnet-zero
!
!
ip cef
no ip domain lookup
!               
!        
interface Loopback0
 ip address 192.168.232.1 255.255.255.0
!        
interface Serial0/0
 no ip address
 shutdown
 serial restart-delay 0
!        
interface Serial0/1
 no ip address
 shutdown
 serial restart-delay 0
!        
interface Serial0/2
 ip address 192.168.192.4 255.255.255.0
 encapsulation frame-relay
 ip ospf network point-to-multipoint
 serial restart-delay 0
 frame-relay map ip 192.168.192.1 301 broadcast
 frame-relay map ip 192.168.192.2 301 broadcast
!        
interface Serial0/3
 no ip address
 shutdown
 serial restart-delay 0
!        
router ospf 10
 log-adjacency-changes
 network 192.168.192.0 0.0.0.255 area 0
 network 192.168.232.0 0.0.0.255 area 0
!        
no ip http server
no ip http secure-server
!        
ip classless
!              
!        
control-plane
!               
!        
end    


FRSW#show run
Building configuration...

Current configuration : 1227 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname FRSW
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
resource policy
!
memory-size iomem 5
ip subnet-zero
!
!
ip cef
no ip domain lookup
!        
!        
!        
frame-relay switching
!               
!        
interface Serial0/0
 no ip address
 encapsulation frame-relay
 serial restart-delay 0
 clock rate 64000
 cdp enable
 frame-relay intf-type dce
 frame-relay route 102 interface Serial0/1 201
 frame-relay route 103 interface Serial0/2 301
!        
interface Serial0/1
 no ip address
 encapsulation frame-relay
 serial restart-delay 0
 clock rate 64000
 cdp enable
 frame-relay intf-type dce
 frame-relay route 201 interface Serial0/0 102
!        
interface Serial0/2
 no ip address
 encapsulation frame-relay
 serial restart-delay 0
 clock rate 64000
 cdp enable
 frame-relay intf-type dce
 frame-relay route 301 interface Serial0/0 103
!        
interface Serial0/3
 no ip address
 shutdown
 serial restart-delay 0
!        
no ip http server
no ip http secure-server
!        
ip classless
!               
!        
control-plane
!               
!        
end  

 (GNS3) ملف اللاب

download (GNS3) lab file


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

الجمعة، ١٥ أبريل ٢٠١١

CCNP-Routing Configuring CISCO Router As A Frame-Relay Switch



بسم الله والحمد لله والصلاة والسلام على رسول الله وآله وصحبه 

وإخوانه ومن والاه...آمين

CCNP-Routing Video Labs (GNS3)

Configuring CISCO Router As A Frame-Relay Switch


Download التحميل

High Quality الجودة العالية


Medium Quality (.ogv) الجودة المتوسطة


Low Quality الجودة الضعيفة



GNS3 Lab File ملف اللاب 



المشاهدة المباشرة

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

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

أجمعين