Firstly, I'm using Linux 2.6.12 (fedora core 3 update) with the latest
version of zebra (off of cvs).
I'm trying to set up OSPF on the following network configuration:
LAN1 (192.168.10.0/24)
LAN2 (192.168.12.0/24)
LAN3 (192.168.14.0/24)
, etc
Each LANs has a router on a backbone connection (192.168.128.0/24)
The problem is that the LAN routes are not being exchanged on the
routers:
Please see the following command outputs and configuration files for
more information
router10> show ip ospf neighbor
Neighbor ID Pri State Dead Time Address
Interface RXmtL RqstL DBsmL
192.168.128.12 12 Full/DROther 00:03:35 192.168.128.12
eth0:192.168.128.10 0 0 0
192.168.128.14 14 Full/DROther 00:03:37 192.168.128.14
eth0:192.168.128.10 0 0 0
router10> show ip ospf route
============ OSPF network routing table ============
============ OSPF router routing table =============
============ OSPF external routing table ===========
router10> show ip ospf database
OSPF Router with ID (192.168.128.10)
Router Link States (Area 0.0.0.0)
Link ID ADV Router Age Seq# CkSum Link count
192.168.128.10 192.168.128.10 41 0x8000007e 0xffdc 5
192.168.128.12 192.168.128.12 10 0x8000008f 0xa621 4
192.168.128.14 192.168.128.14 16 0x80000087 0x585d 6
Router Link States (Area 0.0.0.10 [Stub])
Link ID ADV Router Age Seq# CkSum Link count
192.168.128.10 192.168.128.10 196 0x80000001 0x7384 1
Summary Link States (Area 0.0.0.10 [Stub])
Link ID ADV Router Age Seq# CkSum Route
0.0.0.0 192.168.128.10 193 0x80000001 0xc7a2 0.0.0.0/0
zebra.conf
==========
hostname router10
password zebra
enable password zebra
interface eth0
ip address 192.168.128.10/24
interface eth1
ip address 192.168.10.1/24
ospfd.conf
==========
hostname router10
password zebra
enable password zebra
router ospf
router-id 192.168.128.10
network 192.168.128.0/24 area 0.0.0.0
network 192.168.10.0/24 area 0.0.0.10
area 0.0.0.10 stub
interface eth0
ip ospf dead-interval 225
ip ospf hello-interval 10
ip ospf priority 10
ip ospf retransmit-interval 30
ip ospf transmit-delay 1
ip ospf network point-to-multipoint
interface eth1
ip ospf dead-interval 225
ip ospf hello-interval 10
ip ospf priority 255
ip ospf retransmit-interval 30
ip ospf transmit-delay 1
ip ospf network point-to-multipoint
log stdout
Thanks for your time,
N