cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
4366
Views
0
Helpful
16
Replies

Simple OSPF configuration, but not work as I imagined

berniechen
Level 1
Level 1

Hi

I try to set up a very simple OSPF configuration.  Cause I do not have Cisco router, it is tested by qugga in VM.

RTA(192.168.0.1) <------->(192.168.0.2) RTB (192.168.2.2)<--------> (192.168.2.3)RTC

All of interfaces belong back-bone area.

When I ping 192.168,2,2 from RTA, it is OK. Then I ping 192.168.2.3, it fails. I paste running-config below. It is quite simple. Can anyone tell me what is wrong with it. It is a quagga's issue, configuration issue or it just work as OSPF designed?

BTW, I try to set 192.168.0.0/24 to area 0.0.0.1, but nothing changes.

RTA

Current configuration:

!

hostname ospfd

password zebra

log stdout

!

!

!

interface eth0

!

interface lo

!

router ospf

network 192.168.0.0/24 area 0.0.0.0

!

line vty

!

end

RTB

Current configuration:

!

hostname ospfd

password zebra

log stdout

!

!

!

interface eth1

!

interface eth2

!

interface lo

!

router ospf

network 192.168.0.0/24 area 0.0.0.0

network 192.168.2.0/24 area 0.0.0.0

!

line vty

!

end

RTC

Current configuration:

!

hostname ospfd

password zebra

log stdout

!

!

!

interface eth3

!

interface lo

!

router ospf

network 192.168.2.0/24 area 0.0.0.0

!

line vty

!

end

16 Replies 16

Hi Eugen,

Quagga is a linux routing software which configuration closely resembles IOS and that supports RIP, OSPF and BGP

http://openmaniak.com/quagga.php

Regards.

Alain

Don't forget to rate helpful posts.

I see, thanks, similar to gns3. Learn something new everyday, but unfortunately I forget as easy

Eugen