OSPF
OSPF
PROTOCOL
LAP 1
1
3.Ping from LAN 1 to LAN 2 and from LAN 2 to LAN 1
4. NETWORK TOPOLOGY:
➢R 0
Router(config-if)#int f0/0
Router(config-if)#ip address 10.0.0.2 255.255.255.252
Router(config-if)#no shutdown
Router(config-if)#int f0/1
Router(config-if)#ip address 20.0.0.2 255.255.255.252
Router(config-if)#no shutdown
Router(config)#
Router(config)#router OSPF 1
Router(config-router)#network 10.0.0.0 0.0.0.3 area 0
Router(config-router)#network 20.0.0.0 0.0.0.3 area 0
NETWORK ENGINEER: DAHY MANSOUR
2
➢Show run
interface FastEthernet0/0
Ip address 10.0.0.2 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
Ip address 20.0.0.2 255.255.255.252
duplex auto
speed auto
!
router OSPF 1
log-adjacency-changes
network 10.0.0.0 0.0.0.3 area 0
network 20.0.0.0 0.0.0.3 area 0
➢R 1
Router(config)#int f0/0
Router(config-if)#ip address 10.0.0.1 255.255.255.252
Router(config-if)#no shutdown
Router(config-if)#int f0/1
Router(config-if)#ip address 1.1.1.1 255.255.255.224
Router(config-if)#no shutdown
Router(config)#router OSPF 1
Router(config-router)#network 10.0.0.0 0.0.0.3 area 0
Router(config-router)#network 1.1.1.0 0.0.0.31 area 0
3
➢Show run
interface FastEthernet0/0
Ip address 10.0.0.1 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
Ip address 1.1.1.1 255.255.255.224
duplex auto
speed auto
!
router OSPF 1
log-adjacency-changes
network 10.0.0.0 0.0.0.3 area 0
network 1.1.1.0 0.0.0.31 area 0
➢R 2
Router(config)#int f0/0
Router(config-if)#ip address 20.0.0.1 255.255.255.252
Router(config-if)#no shutdown
Router(config-if)#int f0/1
Router(config-if)#ip address 2.2.2.1 255.255.255.224
Router(config-if)#no shutdown
Router(config)#router OSPF 1
Router(config-router)#network 20.0.0.0 0.0.0.3 area 0
Router(config-router)#network 2.2.2.0 0.0.0.31 area 0
4
➢Show run
interface FastEthernet0/0
Ip address 20.0.0.1 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
Ip address 2.2.2.1 255.255.255.224
duplex auto
speed auto
!
router OSPF 1
log-adjacency-changes
network 20.0.0.0 0.0.0.3 area 0
network 2.2.2.0 0.0.0.31 area 0
➢ Ping from SERVER in LAN 1 to SERVER in LAN 2:
THANK YOU
NETWORK ENGINEER: DAHY MANSOUR