02-16-2010 11:43 PM
Routes are not installed in routing table, if OSPF is configured across Logical-Systems.
I have enabled OPSF across 3 logical systems and main router. L11 <-->L12<-->Main Router<-->L13, with loopback interfaces as 192.168.100.111,192.168.100.112, 192.168.0.12, 192.168.100.113 respectively.
All of them are connected with loop cables physically.
OSPF is not functioning across the logical and main routers. I observed that main router received all Router and Network LSA’s, but it has not installed them in the main routers routing table.
Lines marked in RED are the LSA’s received from L11, L12, L13 whose loopback IPs are 192.168.100.111, 192.168.100.112, 192.168.100.113 respectively.
Atyaf@ATF-DURT-CORE1> show ospf database
OSPF database, Area 0.0.0.0
Type ID Adv Rtr Seq Age Opt Cksum Len
Router *192.168.0.12 192.168.0.12 0x800003f7 351 0x22 0xbd58 72
Router 192.168.0.16 192.168.0.16 0x80000538 1124 0x22 0x1d18 48
Router 192.168.100.111 192.168.100.111 0x80000014 892 0x22 0x87c6 36
Router 192.168.100.112 192.168.100.112 0x80000021 891 0x22 0x37a2 48
Router 192.168.100.113 192.168.100.113 0x8000000d 891 0x22 0x57fc 36
Network 10.10.20.2 192.168.100.113 0x80000003 2315 0x22 0x8399 32
Network 10.10.21.1 192.168.100.112 0x80000005 1133 0x22 0x7aa2 32
Network 10.10.22.2 192.168.100.112 0x80000006 2173 0x22 0xeb66 32
Network 172.16.100.1 192.168.0.16 0x80000101 1013 0x22 0x426f 32
OpaqArea 1.0.0.1 192.168.0.16 0x80000500 1461 0x22 0xdd5a 28
Atyaf@ATF-DURT-CORE1> show route 192.168/16
inet.0: 31 destinations, 46 routes (28 active, 0 holddown, 15 hidden)
+ = Active Route, - = Last Active, * = Both
192.168.0.12/32 *[Direct/0] 3w1d 02:08:53
> via lo0.0
192.168.0.14/32 *[BGP/170] 5d 00:48:40, MED 1, localpref 100
AS path: 65002 I
> to 10.10.12.2 via ge-5/0/4.0
192.168.0.16/32 *[OSPF/10] 5d 00:50:04, metric 1
> to 172.16.100.1 via ge-5/0/2.0
192.168.0.17/32 *[BGP/170] 5d 00:48:43, MED 1, localpref 100
AS path: 65001 I
> to 10.10.11.2 via ge-5/0/3.0
192.168.100.101/32 *[BGP/170] 6d 02:16:53, localpref 100
AS path: 65001 I
> to 10.10.11.2 via ge-5/0/3.0
192.168.100.102/32 *[BGP/170] 6d 02:16:52, localpref 100
AS path: 65002 I
> to 10.10.12.2 via ge-5/0/4.0
192.168.100.103/32 *[BGP/170] 6d 02:16:47, localpref 100
AS path: 65003 I
> to 10.10.13.2 via ge-5/0/5.0
My COnfiguration is:
L11 {
interfaces {
ge-5/2/4 {
unit 0 {
family inet {
address 10.10.22.1/30;
}
family mpls;
}
}
lo0 {
unit 11 {
family inet {
address 192.168.100.111/32;
}
}
}
}
protocols {
mpls {
interface ge-5/2/4.0;
}
ospf {
area 0.0.0.0 {
interface ge-5/2/4.0;
interface lo0.0;
}
}
ldp {
interface ge-5/2/4.0;
}
}
}
L12 {
interfaces {
ge-5/3/4 {
unit 0 {
family inet {
address 10.10.22.2/30;
}
family mpls;
}
}
ge-5/3/6 {
unit 0 {
family inet {
address 10.10.21.1/30;
}
family mpls;
}
}
lo0 {
unit 12 {
family inet {
address 192.168.100.112/32;
}
}
}
}
protocols {
mpls {
interface ge-5/3/4.0;
interface ge-5/3/6.0;
}
ospf {
area 0.0.0.0 {
interface ge-5/3/4.0;
interface ge-5/3/6.0;
interface lo0.0;
}
}
ldp {
interface ge-5/3/4.0;
interface ge-5/3/6.0;
}
}
}
L13 {
interfaces {
ge-5/3/8 {
unit 0 {
family inet {
address 10.10.20.2/30;
}
family mpls;
}
}
lo0 {
unit 13 {
family inet {
address 192.168.100.113/32;
}
}
}
}
protocols {
mpls {
interface ge-5/3/8.0;
}
ospf {
area 0.0.0.0 {
interface ge-5/3/8.0;
interface lo0.0;
}
}
ldp {
interface ge-5/3/8.0;
}
}
}
Main Routers Interfaces:
ge-5/0/6 {
unit 0 {
family inet {
filter {
input mirror1;
output mirror1;
}
address 10.10.21.2/30;
}
family mpls;
}
}
ge-5/0/7 {
unit 0 {
family inet {
filter {
input mirror1;
output mirror1;
}
address 10.10.20.1/30;
}
family mpls;
}
Also find the attached connectivity diagram:
02-20-2010 05:35 AM
Man very small mistake
replace the interface lo0.0 by interface lo0.11 under the protocol ospf configuration in router L11
replace the interface lo0.0 by interface lo0.12 under the protocol ospf configuration in router L12.
replace the interface lo0.0 by interface lo0.13 under the protocol ospf configuration in router L13.
let me know if this resolves the issue.
Thanks
02-23-2010 11:06 AM
Thank you Sourabh, sorry for the delay in responding. I saw this just now. Tomorrow I will verify and update you.
Thanks
Suresh
02-24-2010 03:33 AM
Thanks a lot Sourabh, After making the changes, now it's working.
Thank you very nuch
-Suresh