0% found this document useful (0 votes)
30 views3 pages

Simple OSPF: Healinlodge@yahoo - Co.id

The document describes the configuration of a simple OSPF network with 3 logical routers (R1, R2, R3) connected via VLAN interfaces. R1 has two active OSPF interfaces on VLAN 10 and VLAN 100 networks, and a third interface on VLAN 110 is not running OSPF or advertised. R2 connects to R1 on VLAN 10 and to R3 on VLAN 30, both active in OSPF area 0.0.0.1. R3 connects to R2 on VLAN 30 and has an additional interface on VLAN 300 configured passive in OSPF, so it is advertised but OSPF is not running on the interface.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views3 pages

Simple OSPF: Healinlodge@yahoo - Co.id

The document describes the configuration of a simple OSPF network with 3 logical routers (R1, R2, R3) connected via VLAN interfaces. R1 has two active OSPF interfaces on VLAN 10 and VLAN 100 networks, and a third interface on VLAN 110 is not running OSPF or advertised. R2 connects to R1 on VLAN 10 and to R3 on VLAN 30, both active in OSPF area 0.0.0.1. R3 connects to R2 on VLAN 30 and has an additional interface on VLAN 300 configured passive in OSPF, so it is advertised but OSPF is not running on the interface.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Simple OSPF

root# show
## Last changed: 2011-02-17 11:55:20 UTC
version 8.3R2.8;
system {
root-authentication {
encrypted-password "$1$0Wn8rZ.f$DCb3wO9c4fehiVW7.VsqM1"; ## SECRET-DATA
}
syslog {
user * {
any emergency;
}
file messages {
any notice;
authorization info;
}
file interactive-commands {
interactive-commands any;
}
}
}
logical-routers {
R1 {
interfaces {
fxp0 {
unit 0 {
vlan-id 10;
family inet {
address 192.168.1.2/30;
}
}
unit 1 {
vlan-id 100;
family inet {
address 10.10.10.1/24;
}
}
unit 2 {
vlan-id 110;
family inet {
address 100.100.100.1/24; --> Not advertised and not running OSPF
}
}
}
}

[email protected]

protocols {
ospf {
area 0.0.0.1 {
interface fxp0.0;
interface fxp0.1 {
passive; --> Do not running OSPF on this interface, but advertise it
}
}
}
}
}
R2 {
interfaces {
fxp1 {
unit 0 {
vlan-id 10;
family inet {
address 192.168.1.1/30;
}
}
}
fxp2 {
unit 0 {
vlan-id 30;
family inet {
address 192.168.3.1/30;
}
}
}
}
protocols {
ospf {
area 0.0.0.1 {
interface fxp1.0;
interface fxp2.0;
}
}
}
}
R3 {
interfaces {
fxp3 {
unit 0 {
vlan-id 30;
family inet {
address 192.168.3.2/30;
}
}
unit 1 {
vlan-id 300;
family inet {
address 30.30.30.1/24;
}
}
}
}
protocols {
ospf {
area 0.0.0.1 {
interface fxp3.0;
interface fxp3.1 {
passive; --> Do not running OSPF on this interface, but advertise it
}
}
}
}
}
}
interfaces {
fxp0 {
vlan-tagging;

[email protected]

}
fxp1 {
vlan-tagging;
}
fxp2 {
vlan-tagging;
}
fxp3 {
vlan-tagging;
}
fxp4 {
vlan-tagging;
}

[email protected]

You might also like