Wednesday, March 13, 2024

JNCIA LAB



This lab requires :
-Simulation/ Emulator Software GNS3
-Oracle VM VirtualBox
-And Juniper Junos Olive Image
( you can search it on google or copy this link (download and how to install) "https://www.youtube.com/watch?v=14uMxKgos9I")

Recomended hardware requirments:
-CPU: 4 Cores Intel or AMD High end Procesors.
-RAM: 8GB DDR3/4
-Storage: SSD >128GB
-OS: Windows 10 Pro.


I. STATIC ROUTING SINGLE HOP AND MULTI HOP


I.1 - Static route single hop:
the objectif : R1 can ping IP Loopback R2 and vice versa.
First... we must configure the IP Address.

# Interface Configuration in R1
set interface lo0.0 family inet address 1.1.1.1/32
set interface em0.0 family inet address 12.12.12.1/24

# Interface Configuration in R2
set interface lo0.0 family inet address 2.2.2.2/32
set interface em0.0 family inet address 12.12.12.2/24



Second... we configure static route in R1 and R2,  Because R2 is edge router, we configure R2 using default route.

# static route configuration in R1
set routing-options static route 2.2.2.2/32 next-hop 12.12.12.2

#static route configuration in R2
set routing-options static route 0.0.0.0/0 next-hop 12.12.12.1



 

 










0 comments:

Post a Comment