The image is a screenshot of my network I need to get connected with instructions.
The only successful test I have is pinging 1.0.0.1 from R2 and 1.0.0.2 from R1
As far as I can tell, OSPF is setup correctly but, "show ip ospf neighbor" gives me nothing and "show ip route" doesn't show any device connected via OSPF.
I am unable to ping from router to router (except for R1 and R2).
I'm pretty sure my addressing is correct and that there should be some communication and neighbor discovery. but it's not happening.
Any information on why this is messing up would be greatly appreciated.
using c3640-jk9s-mz.124-16.image

Code:
============
||Router 1||
============
en
conf t
enable secret cisco
hostname R1
line con 0
logg synch
exec-t 0 0
exit
end
conf t
inter s 0/0
ip add 1.0.0.1 255.255.255.252
band 128
encap frame
no shut
inter fa 1/0
ip add 172.16.0.1 255.255.255.252
no shut
inter fa 2/0
ip add 172.16.0.5 255.255.255.252
no shut
end
conf t
router ospf 1
network 1.0.0.0 0.0.0.3 area 0
network 172.16.0.0 0.0.255.255 area 1
network 192.168.0.0 0.0.255.255 area 2
end
conf t
inter s 0/0
ip ospf authentication message-digest
ip ospf message-digest-key 1 md5 cisco
end
Code:
============
||Router 2||
============
en
conf t
enable secret cisco
hostname R2
line con 0
logg synch
exec-t 0 0
exit
end
conf t
inter s 0/0
ip add 1.0.0.2 255.255.255.252
band 128
encap frame
ip access-group 100
no shut
inter fa 1/0
ip add 192.168.0.1 255.255.255.252
no shut
inter fa 2/0
ip add 192.168.0.5 255.255.255.252
no shut
end
conf t
router ospf 1
network 1.0.0.0 0.0.0.3 area 0
network 172.16.0.0 0.0.255.255 area 1
network 192.168.0.0 0.0.255.255 area 2
end
conf t
inter s 0/0
ip ospf authentication message-digest
ip ospf message-digest-key 1 md5 cisco
end
conf t
line vty 0 4
password secret
login
access-class 1 in
end
conf t
no ip access-list extended 100
ip access-list extended 100
deny tcp 192.168.0.0 0.0.0.0 eq 23 172.16.0.8 0.0.0.0
deny tcp 192.168.1.0 0.0.0.0 eq 23 172.16.0.8 0.0.0.0
deny tcp 192.168.2.0 0.0.0.0 eq 23 172.16.0.8 0.0.0.0
deny tcp 192.168.3.0 0.0.0.0 eq 23 172.16.0.8 0.0.0.0
deny tcp 192.168.4.0 0.0.0.0 eq 23 172.16.0.8 0.0.0.0
permit tcp any any
end
Code:
============
||Router 3||
============
en
conf t
enable secret cisco
hostname R2
line con 0
logg synch
exec-t 0 0
exit
end
conf t
inter fa 0/0
ip add 172.16.0.9 255.255.255.252
no shut
inter fa 1/0
ip add 172.16.0.13 255.255.255.252
no shut
inter fa 2/0
ip add 172.16.0.17 255.255.255.252
no shut
end
conf t
router ospf 1
network 1.0.0.0 0.0.0.3 area 0
network 172.16.0.0 0.0.255.255 area 1
network 192.168.0.0 0.0.255.255 area 2
end
conf t
inter fa 0/0
ip ospf authentication message-digest
ip ospf message-digest-key 1 md5 cisco
end
Code:
============
||Router 4||
============
en
conf t
enable secret cisco
hostname R4
line con 0
logg synch
exec-t 0 0
exit
end
conf t
inter fa 0/0
ip add 172.16.0.21 255.255.255.252
no shut
inter fa 1/0
ip add 172.16.0.25 255.255.255.252
no shut
inter fa 2/0
ip add 172.16.0.29 255.255.255.252
no shut
end
conf t
router ospf 1
network 1.0.0.0 0.0.0.3 area 0
network 172.16.0.0 0.0.255.255 area 1
network 192.168.0.0 0.0.255.255 area 2
end
conf t
inter fa 0/0
ip ospf authentication message-digest
ip ospf message-digest-key 1 md5 cisco
end
Code:
============
||Router 5||
============
en
conf t
enable secret cisco
hostname R5
line con 0
logg synch
exec-t 0 0
exit
end
conf t
inter fa 0/0
ip add 192.168.0.9 255.255.255.252
no shut
inter fa 1/0
ip add 192.168.0.13 255.255.255.252
no shut
inter fa 2/0
ip add 192.168.0.17 255.255.255.252
no shut
end
conf t
router ospf 1
network 1.0.0.0 0.0.0.3 area 0
network 172.16.0.0 0.0.255.255 area 1
network 192.168.0.0 0.0.255.255 area 2
end
conf t
inter fa 0/0
ip ospf authentication message-digest
ip ospf message-digest-key 1 md5 cisco
end
Code:
============
||Router 6||
============
en
conf t
enable secret cisco
hostname R6
line con 0
logg synch
exec-t 0 0
exit
end
conf t
inter fa 0/0
ip add 192.168.0.21 255.255.255.252
no shut
inter fa 1/0
ip add 192.168.0.25 255.255.255.252
no shut
inter fa 2/0
ip add 192.168.0.29 255.255.255.252
no shut
end
conf t
router ospf 1
network 1.0.0.0 0.0.0.3 area 0
network 172.16.0.0 0.0.255.255 area 1
network 192.168.0.0 0.0.255.255 area 2
end
conf t
inter fa 0/0
ip ospf authentication message-digest
ip ospf message-digest-key 1 md5 cisco
end