[prev in list] [next in list] [prev in thread] [next in thread] 

List:       zebra
Subject:    [zebra 22318] Re: I: ospfd bug?
From:       Yasuhiro Ohara <yasu () sfc ! wide ! ad ! jp>
Date:       2005-03-27 20:47:56
Message-ID: 20050328.054756.133066017.yasu () sfc ! wide ! ad ! jp
[Download RAW message or body]


Hi,

Having looked into your problem description in detail,
I found that there's no problem in your network (see below).
(Further, I checked myself in our local setup and made it sure
that newer ospfd (0.95 and 0.95-pre2) are also properly working
with virtual-link.)

Your network configuration is:

                   virtual link
            .............................
            :                           :
         [R0]     [R1]        [VR1]     [VR5]       [VR6]
         |  |.2   |  |        |   |     |   |       |   |
---------+- |     | -+--------+-- |     | --+-------+-- |
10.1.0.0/24 |     | 200.10.1.0/24 |     | 200.30.1.0/24 |
Backbone    |     |    Area1      |     |     Area3     |
         ---+-----+---         ---+-----+---         ---+---------
         200.10.6.0/24         200.10.4.0/24         200.30.2.0/24
             Area1                Area1                 Area3

Notice that your text shows that R0 has summary-LSAs for
200.30.1.0 and 200.30.2.0, both in Backbone and Area1.
This indicates that VR5 is properly generating the summary-LSA
in Area1 as well.

Those routes are installed in R0 (below is quoting from your e-mail):

> ******************** R0 status *********************
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 200.10.6.0      *               255.255.255.0   U     0      0        0 eth0
> 200.30.2.0      200.10.6.1      255.255.255.0   UG    50     0        0 eth0
> 200.30.1.0      200.10.6.1      255.255.255.0   UG    40     0        0 eth0
> 200.10.4.0      200.10.6.1      255.255.255.0   UG    30     0        0 eth0
> 10.1.0.0        *               255.255.255.0   U     0      0        0 tap0
> 200.10.1.0      200.10.6.1      255.255.255.0   UG    20     0        0 eth0

R0 receives the summary-LSAs both in Backbone and Area1.

> ospfd> show  ip  ospf  ddatabase 
> 
>        OSPF Router with ID (200.10.6.2)
    :
    :
>                 Summary Link States (Area 0.0.0.0)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 200.10.1.0      200.10.4.2       921 0x80000002 0xf4a6 200.10.1.0/24
> 200.10.1.0      200.10.6.2       882 0x80000002 0xe6b2 200.10.1.0/24
> 200.10.4.0      200.10.4.2       349 0x80000002 0x6f33 200.10.4.0/24
> 200.10.4.0      200.10.6.2       131 0x80000002 0x2a62 200.10.4.0/24
> 200.10.6.0      200.10.4.2       690 0x80000002 0x226a 200.10.6.0/24
> 200.10.6.0      200.10.6.2       441 0x80000002 0x4b53 200.10.6.0/24
> 200.30.1.0      200.10.4.2       630 0x80000002 0x9ff1 200.30.1.0/24
> 200.30.2.0      200.10.4.2       941 0x80000002 0xf88d 200.30.2.0/24
    :
    :
>                 Summary Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 10.1.0.0        200.10.6.2      1838 0x80000001 0x650f 10.1.0.0/24
> 200.30.1.0      200.10.4.2       231 0x80000002 0x9ff1 200.30.1.0/24
> 200.30.2.0      200.10.4.2       582 0x80000002 0xf88d 200.30.2.0/24
> 

If you have any other problem, please let us know.

regards,
yasu


From: "Daniele N." <dnassua@tiscali.it>
Subject: [zebra 22316] I: ospfd bug?
Date: Fri, 25 Mar 2005 00:47:01 +0100

> Ok yasu, this is the complete topology of my network:
> 
> --BACKBONE(10.1.0.0/24)--R0--area1---R1-------VR1------VR5-----area3---VR6--
> --
> 
> 
> below there are the ospfd.conf files and the zebra status of each routers .
> 
> As you can see, routers VR5 and VR6 don't recieve summary LSA of network
> 10.1.0.0/24 
> and also VR5 that is an ABR for area3 doesn'e flood any Summary Lsa into
> area 1!
> 
> thank you for your help!
> Daniele
> 
> ****************** router 0 ospfd.conf ************************
> 
> hostname ospfd
> password zebra
> enable password zebra
> !
> interface eth0
>  ip ospf cost 10
> !
> interface tap0
>  ip ospf cost 3
>        
> router ospf
>  ospf router-id 200.10.6.2
>   network 10.1.0.0/24 area 0
>   network 200.10.6.0/24 area 1
>   
>   area 1 virtual-link 200.10.4.2 
> 
> EOF
> ****************** Router 1 ospfd.conf ************************
> 
> hostname ospfd
> password zebra
> enable password zebra
> !
> !
> !
> router ospf
>  ospf router-id 200.10.6.1
>  network 200.10.1.0/24 area 1
>  network 200.10.2.0/24 area 1
>  network 200.10.6.0/24 area 1
> !
> EOF
> ****************** VRouter 1 ospfd.conf: **********************
> 
> hostname ospfd
> password zebra
> enable password zebra
> !
> router ospf
>  ospf router-id 200.10.1.2
>   network 200.10.1.0/24 area 1
>   network 200.10.4.0/24 area 1    
> !
> !
> !
> EOF
> 
> ********************* VRouter 5 ospfd.conf:**********************
> 
> hostname ospfd
> password zebra
> enable password zebra
> !
> ! 
> router ospf
>  ospf router-id 200.10.4.2
>    network 200.10.4.0/24 area 1
>    network 200.30.1.0/24 area 3   
> 
>    area 1 virtual-link 200.10.6.2
> !
> EOF
> 
> ************************* VRouter 6 ospfd.conf:
> ********************************
> 
> hostname ospfd
> password zebra
> enable password zebra
> !
> ! 
> router ospf
>  ospf router-id 200.30.1.2
>    network 200.30.1.0/24 area 3
>    network 200.30.2.0/24 area 3   
> 
> !
> !
> !
> 
> !
> EOF
> 
> ******************** R0 status *********************
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 200.10.6.0      *               255.255.255.0   U     0      0        0 eth0
> 200.30.2.0      200.10.6.1      255.255.255.0   UG    50     0        0 eth0
> 200.30.1.0      200.10.6.1      255.255.255.0   UG    40     0        0 eth0
> 200.10.4.0      200.10.6.1      255.255.255.0   UG    30     0        0 eth0
> 10.1.0.0        *               255.255.255.0   U     0      0        0 tap0
> 200.10.1.0      200.10.6.1      255.255.255.0   UG    20     0        0 eth0
> Trying 127.0.0.1...
> Connected to 127.0.0.1.
> Escape character is '^]'.
> 
> Hello, this is zebra (version 0.94).
> Copyright 1996-2002 Kunihiro Ishiguro.
> 
> 
> User Access Verification
> 
> Password: 
> 
> ospfd> show  ip  oospf 
> 
>  OSPF Routing Process, Router ID: 200.10.6.2
>  Supports only single TOS (TOS0) routes
>  This implementation conforms to RFC2328
>  RFC1583Compatibility flag is disabled
>  SPF schedule delay 5 secs, Hold time between two SPFs 10 secs
>  Refresh timer 10 secs
>  This router is an ABR, ABR type is: Standard (RFC2328)
>  Number of external LSA 0
>  Number of areas attached to this router: 2
> 
>  Area ID: 0.0.0.0 (Backbone)
>    Number of interfaces in this area: Total: 2, Active: 3
>    Number of fully adjacent neighbors in this area: 1
>    Area has no authentication
>    SPF algorithm executed 6 times
>    Number of LSA 10
> 
>  Area ID: 0.0.0.1
>    Shortcutting mode: Default, S-bit consensus: no
>    Number of interfaces in this area: Total: 1, Active: 2
>    Number of fully adjacent neighbors in this area: 1
>    Area has no authentication
>    Number of full virtual adjacencies going through this area: 1
>    SPF algorithm executed 6 times
>    Number of LSA 10
> 
> 
> ospfd> show  ip  ospf  ddatabase 
> 
>        OSPF Router with ID (200.10.6.2)
> 
>                 Router Link States (Area 0.0.0.0)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Link count
> 200.10.4.2      200.10.4.2        26 0x80000004 0x04c6 1
> 200.10.6.2      200.10.6.2         3 0x80000005 0x8225 2
> 
>                 Summary Link States (Area 0.0.0.0)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 200.10.1.0      200.10.4.2       921 0x80000002 0xf4a6 200.10.1.0/24
> 200.10.1.0      200.10.6.2       882 0x80000002 0xe6b2 200.10.1.0/24
> 200.10.4.0      200.10.4.2       349 0x80000002 0x6f33 200.10.4.0/24
> 200.10.4.0      200.10.6.2       131 0x80000002 0x2a62 200.10.4.0/24
> 200.10.6.0      200.10.4.2       690 0x80000002 0x226a 200.10.6.0/24
> 200.10.6.0      200.10.6.2       441 0x80000002 0x4b53 200.10.6.0/24
> 200.30.1.0      200.10.4.2       630 0x80000002 0x9ff1 200.30.1.0/24
> 200.30.2.0      200.10.4.2       941 0x80000002 0xf88d 200.30.2.0/24
> 
>                 Router Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Link count
> 200.10.1.2      200.10.1.2      1520 0x80000005 0x3ee7 2
> 200.10.4.2      200.10.4.2        28 0x80000004 0x6c73 1
> 200.10.6.1      200.10.6.1      1503 0x80000005 0x0615 2
> 200.10.6.2      200.10.6.2        26 0x80000004 0x7463 1
> 
>                 Net Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum
> 200.10.1.2      200.10.1.2       309 0x80000002 0x936a
> 200.10.4.1      200.10.1.2       312 0x80000002 0x807c
> 200.10.6.1      200.10.6.1        42 0x80000002 0x8a66
> 
>                 Summary Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 10.1.0.0        200.10.6.2      1838 0x80000001 0x650f 10.1.0.0/24
> 200.30.1.0      200.10.4.2       231 0x80000002 0x9ff1 200.30.1.0/24
> 200.30.2.0      200.10.4.2       582 0x80000002 0xf88d 200.30.2.0/24
> 
> 
> 
> ospfd> show  ip  ospf  nneighbor 
> 
> Neighbor ID     Pri   State           Dead Time   Address         Interface
> RXmtL RqstL DBsmL
> 200.10.4.2        1   Full/DROther    00:00:39    200.10.4.2      VLINK0
> 0     0     0
> 200.10.6.1        1   Full/DR         00:00:32    200.10.6.1
> eth0:200.10.6.2     0     0     0
> ospfd> s
> ospfd> sshow  i
> ospfd> show  iip  o
> ospfd> show  ip  oospf  i
> ospfd> show  ip  ospf  iinterface 
> eth0 is up, line protocol is up
>   Internet Address 200.10.6.2/24, Area 0.0.0.1
>   Router ID 200.10.6.2, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State Backup, Priority 1
>   Designated Router (ID) 200.10.6.1, Interface Address 200.10.6.1
>   Backup Designated Router (ID) 200.10.6.2, Interface Address 200.10.6.2
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:02
>   Neighbor Count is 1, Adjacent neighbor count is 1
> tap0 is up, line protocol is up
>   Internet Address 10.1.0.1/24, Area 0.0.0.0
>   Router ID 200.10.6.2, Network Type BROADCAST, Cost: 3
>   Transmit Delay is 1 sec, State DR, Priority 1
>   Designated Router (ID) 200.10.6.2, Interface Address 10.1.0.1
>   No backup designated router on this network
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:00
>   Neighbor Count is 0, Adjacent neighbor count is 0
> VLINK0 is up, line protocol is up
>   Internet Address 200.10.6.2/24, Area 0.0.0.0
>   Router ID 200.10.6.2, Network Type VIRTUALLINK, Cost: 30
>   Transmit Delay is 1 sec, State Point-To-Point, Priority 1
>   No designated router on this network
>   No backup designated router on this network
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:07
>   Neighbor Count is 1, Adjacent neighbor count is 1
> lo is up, line protocol is up
>   OSPF not enabled on this interface
> ospfd> q
> 
> ******************** END ***************************
> 
> ******************** R1 status *********************
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 200.10.6.0      *               255.255.255.0   U     0      0        0 eth0
> 200.30.2.0      200.10.1.2      255.255.255.0   UG    40     0        0 tap0
> 200.30.1.0      200.10.1.2      255.255.255.0   UG    30     0        0 tap0
> 200.10.4.0      200.10.1.2      255.255.255.0   UG    20     0        0 tap0
> 10.1.0.0        200.10.6.2      255.255.255.0   UG    13     0        0 eth0
> 200.10.1.0      *               255.255.255.0   U     0      0        0 tap0
> Trying 127.0.0.1...
> Connected to 127.0.0.1.
> Escape character is '^]'.
> 
> Hello, this is zebra (version 0.94).
> Copyright 1996-2002 Kunihiro Ishiguro.
> 
> 
> User Access Verification
> 
> Password: 
> 
> ospfd> show ip oospf 
> 
>  OSPF Routing Process, Router ID: 200.10.6.1
>  Supports only single TOS (TOS0) routes
>  This implementation conforms to RFC2328
>  RFC1583Compatibility flag is disabled
>  SPF schedule delay 5 secs, Hold time between two SPFs 10 secs
>  Refresh timer 10 secs
>  Number of external LSA 0
>  Number of areas attached to this router: 1
> 
>  Area ID: 0.0.0.1
>    Shortcutting mode: Default, S-bit consensus: no
>    Number of interfaces in this area: Total: 3, Active: 5
>    Number of fully adjacent neighbors in this area: 2
>    Area has no authentication
>    Number of full virtual adjacencies going through this area: 0
>    SPF algorithm executed 7 times
>    Number of LSA 10
> 
> 
> ospfd> show ip ospf ddatabase 
> 
>        OSPF Router with ID (200.10.6.1)
> 
>                 Router Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Link count
> 200.10.1.2      200.10.1.2      1143 0x80000005 0x3ee7 2
> 200.10.4.2      200.10.4.2      1452 0x80000003 0x6e72 1
> 200.10.6.1      200.10.6.1      1127 0x80000005 0x0615 2
> 200.10.6.2      200.10.6.2      1451 0x80000003 0x7662 1
> 
>                 Net Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum
> 200.10.1.2      200.10.1.2      1733 0x80000001 0x9569
> 200.10.4.1      200.10.1.2      1735 0x80000001 0x827b
> 200.10.6.1      200.10.6.1      1465 0x80000001 0x8c65
> 
>                 Summary Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 10.1.0.0        200.10.6.2      1463 0x80000001 0x650f 10.1.0.0/24
> 200.30.1.0      200.10.4.2      1734 0x80000001 0xa1f0 200.30.1.0/24
> 200.30.2.0      200.10.4.2       205 0x80000002 0xf88d 200.30.2.0/24
> 
> 
> 
> ospfd> show ip ospf iinterface 
> 
> lo is up, line protocol is up
>   OSPF not enabled on this interface
> eth0 is up, line protocol is up
>   Internet Address 200.10.6.1/24, Area 0.0.0.1
>   Router ID 200.10.6.1, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State DR, Priority 1
>   Designated Router (ID) 200.10.6.1, Interface Address 200.10.6.1
>   Backup Designated Router (ID) 200.10.6.2, Interface Address 200.10.6.2
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:02
>   Neighbor Count is 1, Adjacent neighbor count is 1
> tap0 is up, line protocol is up
>   Internet Address 200.10.1.1/24, Area 0.0.0.1
>   Router ID 200.10.6.1, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State Backup, Priority 1
>   Designated Router (ID) 200.10.1.2, Interface Address 200.10.1.2
>   Backup Designated Router (ID) 200.10.6.1, Interface Address 200.10.1.1
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:07
>   Neighbor Count is 1, Adjacent neighbor count is 1
> tap1 is down, line protocol is down
>   OSPF is enabled, but not running on this interface
> 
> 
> ospfd> show ip ospf nneighbor 
> 
> Neighbor ID     Pri   State           Dead Time   Address         Interface
> RXmtL RqstL DBsmL
> 200.10.6.2        1   Full/Backup     00:00:40    200.10.6.2
> eth0:200.10.6.1     0     0     0
> 200.10.1.2        1   Full/DR         00:00:34    200.10.1.2
> tap0:200.10.1.1     0     0     0
> ospfd> 
> ospfd> q
> 
> ******************** END ***************************
> 
> 
> ******************** VR1 status *********************
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 200.10.6.0      200.10.1.1      255.255.255.0   UG    20     0        0 eth0
> 200.30.2.0      200.10.4.2      255.255.255.0   UG    30     0        0 eth1
> 200.30.1.0      200.10.4.2      255.255.255.0   UG    20     0        0 eth1
> 200.10.4.0      *               255.255.255.0   U     0      0        0 eth1
> 10.1.0.0        200.10.1.1      255.255.255.0   UG    23     0        0 eth0
> 200.10.1.0      *               255.255.255.0   U     0      0        0 eth0
> Trying 127.0.0.1...
> Connected to 127.0.0.1.
> Escape character is '^]'.
> 
> Hello, this is zebra (version 0.94).
> Copyright 1996-2002 Kunihiro Ishiguro.
> 
> 
> User Access Verification
> 
> Password: 
> 
> 
> ospfd> show ip ospf database 
> 
>        OSPF Router with ID (200.10.1.2)
> 
>                 Router Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Link count
> 200.10.1.2      200.10.1.2       646 0x80000005 0x3ee7 2
> 200.10.4.2      200.10.4.2       955 0x80000003 0x6e72 1
> 200.10.6.1      200.10.6.1       631 0x80000005 0x0615 2
> 200.10.6.2      200.10.6.2       956 0x80000003 0x7662 1
> 
>                 Net Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum
> 200.10.1.2      200.10.1.2      1236 0x80000001 0x9569
> 200.10.4.1      200.10.1.2      1239 0x80000001 0x827b
> 200.10.6.1      200.10.6.1       970 0x80000001 0x8c65
> 
>                 Summary Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 10.1.0.0        200.10.6.2       968 0x80000001 0x650f 10.1.0.0/24
> 200.30.1.0      200.10.4.2      1237 0x80000001 0xa1f0 200.30.1.0/24
> 200.30.2.0      200.10.4.2      1182 0x80000001 0xfa8c 200.30.2.0/24
> 
> 
> 
> ospfd> show ip ospf nneighbor 
> 
> 
> Neighbor ID     Pri   State           Dead Time   Address         Interface
> RXmtL RqstL DBsmL
> 200.10.4.2        1   Full/Backup     00:00:37    200.10.4.2
> eth1:200.10.4.1     0     0     0
> 200.10.6.1        1   Full/Backup     00:00:38    200.10.1.1
> eth0:200.10.1.2     0     0     0
> 
> 
> 
> ospfd> show ip ospf
> 
>  OSPF Routing Process, Router ID: 200.10.1.2
>  Supports only single TOS (TOS0) routes
>  This implementation conforms to RFC2328
>  RFC1583Compatibility flag is disabled
>  SPF schedule delay 5 secs, Hold time between two SPFs 10 secs
>  Refresh timer 10 secs
>  Number of external LSA 0
>  Number of areas attached to this router: 1
> 
>  Area ID: 0.0.0.1
>    Shortcutting mode: Default, S-bit consensus: no
>    Number of interfaces in this area: Total: 3, Active: 5
>    Number of fully adjacent neighbors in this area: 2
>    Area has no authentication
>    Number of full virtual adjacencies going through this area: 0
>    SPF algorithm executed 8 times
>    Number of LSA 10
> 
> 
> ospfd> show ip ospf iinterface 
> 
> lo is up, line protocol is up
>   OSPF not enabled on this interface
> dummy0 is down, line protocol is down
>   OSPF not enabled on this interface
> eth1 is up, line protocol is up
>   Internet Address 200.10.4.1/24, Area 0.0.0.1
>   Router ID 200.10.1.2, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State DR, Priority 1
>   Designated Router (ID) 200.10.1.2, Interface Address 200.10.4.1
>   Backup Designated Router (ID) 200.10.4.2, Interface Address 200.10.4.2
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:01
>   Neighbor Count is 1, Adjacent neighbor count is 1
> eth2 is down, line protocol is down
>   OSPF is enabled, but not running on this interface
> eth0 is up, line protocol is up
>   Internet Address 200.10.1.2/24, Area 0.0.0.1
>   Router ID 200.10.1.2, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State DR, Priority 1
>   Designated Router (ID) 200.10.1.2, Interface Address 200.10.1.2
>   Backup Designated Router (ID) 200.10.6.1, Interface Address 200.10.1.1
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
> 
> ******************** END ***************************
> 
> ******************** VR5 status *********************
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 200.10.6.0      200.10.4.1      255.255.255.0   UG    30     0        0 eth0
> 200.30.2.0      200.30.1.2      255.255.255.0   UG    20     0        0 eth1
> 200.30.1.0      *               255.255.255.0   U     0      0        0 eth1
> 200.10.4.0      *               255.255.255.0   U     0      0        0 eth0
> 200.10.1.0      200.10.4.1      255.255.255.0   UG    20     0        0 eth0
> Trying 127.0.0.1...
> Connected to 127.0.0.1.
> Escape character is '^]'.
> 
> Hello, this is zebra (version 0.94).
> Copyright 1996-2002 Kunihiro Ishiguro.
> 
> 
> User Access Verification
> 
> Password: 
> 
> 
> ospfd> show ip oospf 
> 
>  OSPF Routing Process, Router ID: 200.10.4.2
>  Supports only single TOS (TOS0) routes
>  This implementation conforms to RFC2328
>  RFC1583Compatibility flag is disabled
>  SPF schedule delay 5 secs, Hold time between two SPFs 10 secs
>  Refresh timer 10 secs
>  This router is an ABR, ABR type is: Standard (RFC2328)
>  Number of external LSA 0
>  Number of areas attached to this router: 3
> 
>  Area ID: 0.0.0.0 (Backbone)
>    Number of interfaces in this area: Total: 1, Active: 1
>    Number of fully adjacent neighbors in this area: 1
>    Area has no authentication
>    SPF algorithm executed 9 times
>    Number of LSA 10
> 
>  Area ID: 0.0.0.1
>    Shortcutting mode: Default, S-bit consensus: no
>    Number of interfaces in this area: Total: 1, Active: 2
>    Number of fully adjacent neighbors in this area: 1
>    Area has no authentication
> Number of full virtual adjacencies going through this area: 1
>    SPF algorithm executed 9 times
>    Number of LSA 10
> 
>  Area ID: 0.0.0.3
>    Shortcutting mode: Default, S-bit consensus: no
>    Number of interfaces in this area: Total: 1, Active: 2
>    Number of fully adjacent neighbors in this area: 1
>    Area has no authentication
>    Number of full virtual adjacencies going through this area: 0
>    SPF algorithm executed 9 times
>    Number of LSA 6
> 
> 
> 
> ospfd> show ip ospf ddatabase 
> 
> 
>        OSPF Router with ID (200.10.4.2)
> 
>                 Router Link States (Area 0.0.0.0)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Link count
> 200.10.4.2      200.10.4.2      1184 0x80000003 0x06c5 1
> 200.10.6.2      200.10.6.2      1162 0x80000004 0x8424 2
> 
>                 Summary Link States (Area 0.0.0.0)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 200.10.1.0      200.10.4.2       279 0x80000002 0xf4a6 200.10.1.0/24
> 200.10.1.0      200.10.6.2       241 0x80000002 0xe6b2 200.10.1.0/24
> 200.10.4.0      200.10.4.2      1466 0x80000001 0x7132 200.10.4.0/24
> 200.10.4.0      200.10.6.2      1187 0x80000001 0x2c61 200.10.4.0/24
> 200.10.6.0      200.10.4.2        48 0x80000002 0x226a 200.10.6.0/24
> 200.10.6.0      200.10.6.2      1197 0x80000001 0x4d52 200.10.6.0/24
> 200.30.1.0      200.10.4.2      1466 0x80000001 0xa1f0 200.30.1.0/24
> 200.30.2.0      200.10.4.2       299 0x80000002 0xf88d 200.30.2.0/24
> 
>                 Router Link States (Area 0.0.0.1)
> Link ID         ADV Router      Age  Seq#       CkSum  Link count
> 200.10.1.2      200.10.1.2       878 0x80000005 0x3ee7 2
> 200.10.4.2      200.10.4.2      1184 0x80000003 0x6e72 1
> 200.10.6.1      200.10.6.1       863 0x80000005 0x0615 2
> 200.10.6.2      200.10.6.2      1187 0x80000003 0x7662 1
> 
>                 Net Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum
> 200.10.1.2      200.10.1.2      1467 0x80000001 0x9569
> 200.10.4.1      200.10.1.2      1470 0x80000001 0x827b
> 200.10.6.1      200.10.6.1      1201 0x80000001 0x8c65
> 
>                 Summary Link States (Area 0.0.0.1)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 10.1.0.0        200.10.6.2      1199 0x80000001 0x650f 10.1.0.0/24
> 200.30.1.0      200.10.4.2      1466 0x80000001 0xa1f0 200.30.1.0/24
> 200.30.2.0      200.10.4.2      1412 0x80000001 0xfa8c 200.30.2.0/24
> 
>                 Router Link States (Area 0.0.0.3)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Link count
> 200.10.4.2      200.10.4.2      1426 0x80000003 0xad15 1
> 200.30.1.2      200.30.1.2      1428 0x80000003 0x6538 2
> 
>                 Net Link States (Area 0.0.0.3)
> 
> Link ID         ADV Router      Age  Seq#       CkSum
> 200.30.1.2      200.30.1.2      1428 0x80000001 0xecd6
> 
>                 Summary Link States (Area 0.0.0.3)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 200.10.1.0      200.10.4.2      1456 0x80000001 0xf6a5 200.10.1.0/24
> 200.10.4.0      200.10.4.2      1466 0x80000001 0x7132 200.10.4.0/24
> 200.10.6.0      200.10.4.2       459 0x80000002 0x226a 200.10.6.0/24
> 
> 
> 
> ospfd> show ip ospf iinterface 
> 
> VLINK0 is up, line protocol is up
>   Internet Address 200.10.4.2/24, Area 0.0.0.0
>   Router ID 200.10.4.2, Network Type VIRTUALLINK, Cost: 30
>   Transmit Delay is 1 sec, State Point-To-Point, Priority 1
>   No designated router on this network
>   No backup designated router on this network
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:01
>   Neighbor Count is 1, Adjacent neighbor count is 1
> lo is up, line protocol is up
>   OSPF not enabled on this interface
> dummy0 is down, line protocol is down
>   OSPF not enabled on this interface
> eth0 is up, line protocol is up
>   Internet Address 200.10.4.2/24, Area 0.0.0.1
>   Router ID 200.10.4.2, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State Backup, Priority 1
>   Designated Router (ID) 200.10.1.2, Interface Address 200.10.4.1
>   Backup Designated Router (ID) 200.10.4.2, Interface Address 200.10.4.2
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:09
>   Neighbor Count is 1, Adjacent neighbor count is 1
> eth1 is up, line protocol is up
>   Internet Address 200.30.1.1/24, Area 0.0.0.3
>   Router ID 200.10.4.2, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State Backup, Priority 1
>   Designated Router (ID) 200.30.1.2, Interface Address 200.30.1.2
>   Backup Designated Router (ID) 200.10.4.2, Interface Address 200.30.1.1
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:09
>   Neighbor Count is 1, Adjacent neighbor count is 1
> sit0 is down, line protocol is down
>   OSPF not enabled on this interface
> 
> 
> ospfd> show ip ospf nneighbor 
> 
> Neighbor ID     Pri   State           Dead Time   Address         Interface
> RXmtL RqstL DBsmL
> 200.10.6.2        1   Full/DROther    00:00:33    200.10.6.2      VLINK0
> 0     0     0
> 200.10.1.2        1   Full/DR         00:00:40    200.10.4.1
> eth0:200.10.4.2     0     0     0
> 200.30.1.2        1   Full/DR         00:00:40    200.30.1.2
> eth1:200.30.1.1     0     0     0
> 
> ******************** END ***************************
> 
> 
> ******************** VR6 status *********************
> Kernel IP routing table
> Destination     Gateway         Genmask         Flags Metric Ref    Use
> Iface
> 200.10.6.0      200.30.1.1      255.255.255.0   UG    40     0        0 eth0
> 200.30.2.0      *               255.255.255.0   U     0      0        0 eth1
> 200.30.1.0      *               255.255.255.0   U     0      0        0 eth0
> 200.10.4.0      200.30.1.1      255.255.255.0   UG    20     0        0 eth0
> 200.10.1.0      200.30.1.1      255.255.255.0   UG    30     0        0 eth0
> Trying 127.0.0.1...
> Connected to 127.0.0.1.
> Escape character is '^]'.
> 
> Hello, this is zebra (version 0.94).
> Copyright 1996-2002 Kunihiro Ishiguro.
> 
> 
> User Access Verification
> 
> Password: 
> 
> ospfd> show ip oospf 
> 
>  OSPF Routing Process, Router ID: 200.30.1.2
>  Supports only single TOS (TOS0) routes
>  This implementation conforms to RFC2328
>  RFC1583Compatibility flag is disabled
>  SPF schedule delay 5 secs, Hold time between two SPFs 10 secs
>  Refresh timer 10 secs
>  Number of external LSA 0
>  Number of areas attached to this router: 1
> 
>  Area ID: 0.0.0.3
>    Shortcutting mode: Default, S-bit consensus: no
>    Number of interfaces in this area: Total: 2, Active: 4
>    Number of fully adjacent neighbors in this area: 1
>    Area has no authentication
>    Number of full virtual adjacencies going through this area: 0
>    SPF algorithm executed 4 times
>    Number of LSA 6
> 
> 
> ospfd> show ip ospf ddatabase 
> 
>        OSPF Router with ID (200.30.1.2)
> 
>                 Router Link States (Area 0.0.0.3)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Link count
> 200.10.4.2      200.10.4.2      1544 0x80000003 0xad15 1
> 200.30.1.2      200.30.1.2      1544 0x80000003 0x6538 2
> 
>                 Net Link States (Area 0.0.0.3)
> 
> Link ID         ADV Router      Age  Seq#       CkSum
> 200.30.1.2      200.30.1.2      1544 0x80000001 0xecd6
> 
>                 Summary Link States (Area 0.0.0.3)
> 
> Link ID         ADV Router      Age  Seq#       CkSum  Route
> 200.10.1.0      200.10.4.2      1574 0x80000001 0xf6a5 200.10.1.0/24
> 200.10.4.0      200.10.4.2      1584 0x80000001 0x7132 200.10.4.0/24
> 200.10.6.0      200.10.4.2       578 0x80000002 0x226a 200.10.6.0/24
> 
> 
> 
> ospfd> show ip ospf iinterface 
> 
> lo is up, line protocol is up
>   OSPF not enabled on this interface
> dummy0 is down, line protocol is down
>   OSPF not enabled on this interface
> eth0 is up, line protocol is up
>   Internet Address 200.30.1.2/24, Area 0.0.0.3
>   Router ID 200.30.1.2, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State DR, Priority 1
>   Designated Router (ID) 200.30.1.2, Interface Address 200.30.1.2
>   Backup Designated Router (ID) 200.10.4.2, Interface Address 200.30.1.1
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:02
>   Neighbor Count is 1, Adjacent neighbor count is 1
> eth1 is up, line protocol is up
>   Internet Address 200.30.2.1/24, Area 0.0.0.3
>   Router ID 200.30.1.2, Network Type BROADCAST, Cost: 10
>   Transmit Delay is 1 sec, State DR, Priority 1
>   Designated Router (ID) 200.30.1.2, Interface Address 200.30.2.1
>   No backup designated router on this network
>   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
>     Hello due in 00:00:07
>   Neighbor Count is 0, Adjacent neighbor count is 0
> sit0 is down, line protocol is down
>   OSPF not enabled on this interface
> 
> 
> ospfd> show ip ospf nneighbor 
> 
> Neighbor ID     Pri   State           Dead Time   Address         Interface
> RXmtL RqstL DBsmL
> 200.10.4.2        1   Full/Backup     00:00:39    200.30.1.1
> eth0:200.30.1.2     0     0     0
> ospfd> 
> ospfd> q
> 
> ******************** END ***************************
> -----Messaggio originale-----
> Da: Yasuhiro Ohara [mailto:yasu@sfc.wide.ad.jp] 
> Inviato: giovedì 24 marzo 2005 9.37
> A: dnassua@tiscali.it
> Cc: zebra@ml.zebra.org
> Oggetto: Re: [zebra 22311] ospfd bug?
> 
> 
> Would you show us your ospfd.conf ?
> 
> I'm now far from my workspace but will check if the problem exist
> for my setup when I get back. I checked virtual link 4-5 months ago
> and did not find any problem.
> 
> regards,
> yasu
> 
> From: dnassua@tiscali.it
> Subject: [zebra 22311] ospfd bug?
> Date: Tue, 22 Mar 2005 11:45:14 +0100
> 
> > Hi, I 'm Daniele from Rome.
> > I' m using ospfd (zebra 0.94) and I have a problem with Virtual Links.
> > 
> > I configured a VL between two routers, R1 e R5
> > 
> > R0 --- backbone(10.1.0.0/24) ---- R1 --------- ..VL(area1)... ------ R5
> ------
> > (area3) --- ...
> > 
> >  I noticed that in the Link State Database of R5 there isn't the Summary
> > Lsa for the backbone network (10.1.0.0/24), So R5 and area 3 routers,
> don't
> > update their routing table and they can't reach the backbone's address.
> > 
> > is this a Bug?
> > 
> > thx
> > Daniele  
> > 
> > __________________________________________________________________
> > Tiscali Adsl 3 Mega Flat con 3 MESI GRATIS! 
> > Con Tiscali Adsl 3 Mega Flat navighi con la Supervelocita'
> > a soli 29.95 euro al mese, senza limiti di tempo. E se attivi
> > entro il 31 Marzo, 3 MESI sono GRATIS!
> > Scopri come su http://abbonati.tiscali.it/adsl/sa/2flat_tc/
> > 
> > 
> > 
> > 
> > _______________________________________________
> > Zebra mailing list
> > Zebra@ml.zebra.org
> > http://ml.zebra.org/mailman/listinfo/zebra
> > 
> 
> 
> _______________________________________________
> Zebra mailing list
> Zebra@ml.zebra.org
> http://ml.zebra.org/mailman/listinfo/zebra
> 

_______________________________________________
Zebra mailing list
Zebra@ml.zebra.org
http://ml.zebra.org/mailman/listinfo/zebra

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic