I have a simple setup in PT to use OSPF. Two of my routers, HQ and R1 work fine, and are communicating through OSPF, R2 is the third router and is not broadcasting or recieving updates that I can see. I am hoping for a little help in seeing why?
HQ:
HQ#sh run
Building configuration...
Current configuration : 586 bytes
!
version 12.3
no service password-encryption
!
hostname HQ
!
!
!
!
interface FastEthernet0/0
ip address 192.168.10.1 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Loopback0
ip address 172.16.1.17 255.255.255.240
!
interface Vlan1
no ip address
shutdown
!
router ospf 1
log-adjacency-changes
network 172.16.1.16 0.0.0.15 area 0
network 192.168.10.0 0.0.0.3 area 0
default-information originate
!
ip classless
ip route 0.0.0.0 0.0.0.0 Loopback0
!
!
!
!
line con 0
line vty 0 4
login
!
!
end
R1:
R1#sh run
Building configuration...
Current configuration : 516 bytes
!
version 12.3
no service password-encryption
!
hostname R1
!
!
!
!
interface FastEthernet0/0
ip address 192.168.10.2 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Loopback0
ip address 10.10.10.1 255.255.255.0
!
interface Vlan1
no ip address
shutdown
!
router ospf 1
log-adjacency-changes
network 10.10.10.0 0.0.0.255 area 0
network 192.168.10.0 0.0.0.3 area 0
!
ip classless
!
!
!
!
line con 0
line vty 0 4
login
!
!
end
R2:
R2#sh run
Building configuration...
Current configuration : 518 bytes
!
version 12.3
no service password-encryption
!
hostname R2
!
!
!
!
interface FastEthernet0/0
ip address 192.168.10.6 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Loopback0
ip address 172.16.1.33 255.255.255.248
!
interface Vlan1
no ip address
shutdown
!
router ospf 1
log-adjacency-changes
network 172.16.1.32 0.0.0.7 area 0
network 192.168.10.4 0.0.0.3 area 0
!
ip classless
!
!
!
!
line con 0
line vty 0 4
login
!
!
end
Please remember, I am a beginner, treat me kindly if I made any stupid mistakes.