Wednesday, July 21, 2010

JUNOS 101 #2

#2 OSPF
1. Establish OSPF neighbors between EX-8216 over 10G link (area 0)
2. Configure Vlan1 in ospf area 1.




switch #1

protocols {
ospf {
area 0.0.0.0 {
interface xe-0/0/0.0;
}
}
}

interfaces {
xe-0/0/0 {
unit 0 {
family inet {
address 2.2.2.1/30;
}
}
}
}




switch #2

protocols {
ospf {
area 0.0.0.0 {
interface xe-0/0/0.0;
}
area 0.0.0.1 {
interface vlan.1;
}
}
}

interfaces {
xe-0/0/0 {
unit 0 {
family inet {
address 2.2.2.2/30;
}
}
}
}

interface {
vlan {
unit 1 {
family inet {
address 1.1.1.1/24;
}
}
}
}

Post a Comment